Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
wbt committed Oct 22, 2023
1 parent 362c6b9 commit b70f59a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hardhat/contracts/SubscryptoToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ contract SubscryptoToken is ERC20, ERC20Burnable, Ownable, ERC20Permit {
}

function withdraw(uint amount) public {
withdraw(msg.sender, amount)
withdraw(msg.sender, amount);
}

function withdraw(address acct, uint amount) private {
Expand Down

0 comments on commit b70f59a

Please sign in to comment.