Skip to content

Instantly share code, notes, and snippets.

@nazariyv
Created February 16, 2020 17:14
Show Gist options
  • Save nazariyv/748577f5a901fa75a4ccf1e17b097f05 to your computer and use it in GitHub Desktop.
Save nazariyv/748577f5a901fa75a4ccf1e17b097f05 to your computer and use it in GitHub Desktop.
FrontRunner-2
receive() external payable {
emit Received(msg.sender, msg.value);
}
modifier restricted() {
require(msg.sender == manager, "manager allowed only");
_;
}
constructor() public {
manager = msg.sender;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment