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

@ -25,6 +25,8 @@ contract SampleCrowdsaleToken is Initializable, ERC20Mintable {
symbol = "SCT";
decimals = 18;
}
uint256[50] private ______gap;
}
@ -67,4 +69,6 @@ contract SampleCrowdsale is Initializable, Crowdsale, CappedCrowdsale, Refundabl
//the value needs to less or equal than a cap which is limit for accepted funds
require(goal <= cap);
}
uint256[50] private ______gap;
}

View File

@ -26,4 +26,6 @@ contract SimpleToken is Initializable, ERC20 {
_mint(sender, INITIAL_SUPPLY);
}
uint256[50] private ______gap;
}