diff --git a/src/contracts/gho/UpgradeableGhoToken.sol b/src/contracts/gho/UpgradeableGhoToken.sol index 4c32280e..22c9bc0f 100644 --- a/src/contracts/gho/UpgradeableGhoToken.sol +++ b/src/contracts/gho/UpgradeableGhoToken.sol @@ -37,7 +37,7 @@ contract UpgradeableGhoToken is VersionedInitializable, UpgradeableERC20, Access function initialize(address admin) public virtual initializer { _ERC20_init('Gho Token', 'GHO'); - _setupRole(DEFAULT_ADMIN_ROLE, admin); + _grantRole(DEFAULT_ADMIN_ROLE, admin); } /// @inheritdoc IGhoToken