Skip to content

Instantly share code, notes, and snippets.

@yidongw
Created December 20, 2018 23:45
Show Gist options
  • Save yidongw/fada9a32474373840d880e70827e6337 to your computer and use it in GitHub Desktop.
Save yidongw/fada9a32474373840d880e70827e6337 to your computer and use it in GitHub Desktop.
Perun15
function LCOpenTimeout() public {
require(msg.sender == alice.id && status == LCStatus.Init);
if (now > timeout) {
EventLCNotOpened();
selfdestruct(alice.id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment