Skip to content

Instantly share code, notes, and snippets.

@seanavery
Created August 6, 2017 05:30
Show Gist options
  • Save seanavery/7e09c79078c1b18ed2a9c3700d2f7464 to your computer and use it in GitHub Desktop.
Save seanavery/7e09c79078c1b18ed2a9c3700d2f7464 to your computer and use it in GitHub Desktop.
function contractExists(address adrs) internal returns (bool) {
uint length;
assembly {
length := extcodesize(adrs)
}
if (length > 0) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment