Guest User

Untitled

a guest
Jul 18th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. pragma solidity ^0.4.24;
  2.  
  3. contract BankContract {
  4. uint balane;
  5.  
  6. function deposit() public payable {
  7. balane += msg.value;
  8. }
  9.  
  10. function getBalance() public view returns (uint) {
  11. return balane;
  12. }
  13. }
Add Comment
Please, Sign In to add comment