Bump required compiler version for Address (#1898)

This commit is contained in:
Nicolás Venturo
2019-08-26 20:12:46 -03:00
committed by GitHub
parent 92b2e2800a
commit 4e527a20a5

View File

@ -1,4 +1,4 @@
pragma solidity ^0.5.0; pragma solidity ^0.5.5;
/** /**
* @dev Collection of functions related to the address type * @dev Collection of functions related to the address type
@ -19,7 +19,7 @@ library Address {
// This method relies in extcodesize, which returns 0 for contracts in // This method relies in extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the // construction, since the code is only stored at the end of the
// constructor execution. // constructor execution.
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')` // for accounts without code, i.e. `keccak256('')`