Skip to content

Instantly share code, notes, and snippets.

@bartubozkurt
Created April 23, 2022 09:28
Show Gist options
  • Save bartubozkurt/5b95ba60e6d67154ce56a3d1eb2ed9a9 to your computer and use it in GitHub Desktop.
Save bartubozkurt/5b95ba60e6d67154ce56a3d1eb2ed9a9 to your computer and use it in GitHub Desktop.
//SPDX-License-Identifier: MIT
pragma solidity 0.8.3;
contract FunctionsExample {
mapping(address => uint) public balanceReceived;
function receiveMoney() public payable {
assert(balanceReceived[msg.sender] + msg.value >= balanceReceived[msg.sender]);
balanceReceived[msg.sender] += msg.value;
}
function withdrawMoney(address payable _to, uint _amount) public {
require(_amount <= balanceReceived[msg.sender], "not enough funds.");
assert(balanceReceived[msg.sender] >= balanceReceived[msg.sender] - _amount);
balanceReceived[msg.sender] -= _amount;
_to.transfer(_amount);
}
receive() external payable {
receiveMoney();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment