Added gaps at the end of the storage of each contract.

This commit is contained in:
Nicolás Venturo
2018-10-08 14:39:39 -03:00
parent b25e8b91a5
commit 932a39f5fd
49 changed files with 101 additions and 1 deletions

View File

@ -12,6 +12,8 @@ import "../../token/ERC20/IERC20.sol";
*/
contract ERC20TokenMetadata is Initializable, IERC20 {
function tokenURI() external view returns (string);
uint256[50] private ______gap;
}
@ -28,4 +30,6 @@ contract ERC20WithMetadata is Initializable, ERC20TokenMetadata {
function tokenURI() external view returns (string) {
return _tokenURI;
}
uint256[50] private ______gap;
}