Created
April 23, 2022 09:28
-
-
Save bartubozkurt/5b95ba60e6d67154ce56a3d1eb2ed9a9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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