Skip to content

Instantly share code, notes, and snippets.

@sibelius
Last active March 4, 2022 14:46
Show Gist options
  • Save sibelius/a168c2ede202d5f3e2bad436c23bf57e to your computer and use it in GitHub Desktop.
Save sibelius/a168c2ede202d5f3e2bad436c23bf57e to your computer and use it in GitHub Desktop.
Charity receives ether even when no function called was matched
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