fix initialize versions

This commit is contained in:
Francisco Giordano
2018-05-18 21:23:14 -03:00
parent 39fe05dfad
commit c8719ce418
9 changed files with 12 additions and 8 deletions

View File

@ -17,7 +17,7 @@ contract Ownable is Migratable {
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
function initialize(address _sender) public isInitializer("Ownable", "0") {
function initialize(address _sender) public isInitializer("Ownable", "1.9.0-beta") {
owner = _sender;
}