Skip to content

Commit

Permalink
Update minibank.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
kozuelam authored Aug 12, 2020
1 parent 37269c4 commit 73caf23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion minibank.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ contract MiniBank {
}

/// Withdraw amount from MiniBank
/// @param withdraw amount
/// @param withdrawAmount amount for withdrawing
/// @return The ramaining balance
function withdraw(uint withdrawAmount) public returns (uint) {
require(withdrawAmount <= accounts[msg.sender]);
Expand Down

0 comments on commit 73caf23

Please sign in to comment.