Skip to content

Instantly share code, notes, and snippets.

@liushooter
Created August 6, 2018 07:02
Show Gist options
  • Select an option

  • Save liushooter/fec0f44c8897fb4a70c1e8ece2310771 to your computer and use it in GitHub Desktop.

Select an option

Save liushooter/fec0f44c8897fb4a70c1e8ece2310771 to your computer and use it in GitHub Desktop.
智能合约
modifier isHuman() {
address _addr = msg.sender;
uint256 _codeLength;
assembly {_codeLength := extcodesize(_addr)}
require(_codeLength == 0, "sorry humans only");
_;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment