Last active
March 4, 2022 14:46
-
-
Save sibelius/a168c2ede202d5f3e2bad436c23bf57e to your computer and use it in GitHub Desktop.
Charity receives ether even when no function called was matched
This file contains 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
pragma solidity ^0.5.0; | |
contract Charity { | |
function() external payable { | |
// React to receiving ether | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment