You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
602 B
21 lines
602 B
pragma solidity ^0.4.18;
|
|
|
|
/**
|
|
* Utility library of inline functions on addresses
|
|
*/
|
|
library AddressUtils {
|
|
|
|
/**
|
|
* Returns whether there is code in the target address
|
|
* @dev This function will return false if invoked during the constructor of a contract,
|
|
* as the code is not actually created until after the constructor finishes.
|
|
* @param addr address address to check
|
|
* @return whether there is code in the target address
|
|
*/
|
|
function isContract(address addr) internal view returns (bool) {
|
|
uint size;
|
|
assembly { size := extcodesize(addr) }
|
|
return size > 0;
|
|
}
|
|
|
|
}
|
|
|