bump to 1.9.0
This commit is contained in:
@ -18,7 +18,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", "1.9.0-beta") {
|
||||
function initialize(address _sender) public isInitializer("Ownable", "1.9.0") {
|
||||
owner = _sender;
|
||||
}
|
||||
|
||||
|
||||
@ -30,7 +30,7 @@ contract RBACWithAdmin is RBAC, Migratable {
|
||||
* @dev constructor. Sets initialAdmin as admin.
|
||||
*/
|
||||
function initialize(address initialAdmin)
|
||||
isInitializer("RBACWithAdmin", "1.9.0-beta")
|
||||
isInitializer("RBACWithAdmin", "1.9.0")
|
||||
public
|
||||
{
|
||||
addRole(initialAdmin, ROLE_ADMIN);
|
||||
|
||||
Reference in New Issue
Block a user