Skip to content

Instantly share code, notes, and snippets.

@haniefhan
Last active October 29, 2021 09:43
Show Gist options
  • Save haniefhan/0f810d39e0a96ad8ef4141dc2408138c to your computer and use it in GitHub Desktop.
Save haniefhan/0f810d39e0a96ad8ef4141dc2408138c to your computer and use it in GitHub Desktop.
...
contract SmartBank {
...
function deposit() public payable {
balances[msg.sender] = msg.value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment