From fc08657c45243387c59b2f36e1dd026fbbb699ee Mon Sep 17 00:00:00 2001 From: miguelmtz <36620902+miguelmtzinf@users.noreply.github.com> Date: Tue, 4 Jul 2023 18:27:18 +0200 Subject: [PATCH] fix: Add IAccessControl interface to IGhoToken (#354) --- src/contracts/gho/interfaces/IGhoToken.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/contracts/gho/interfaces/IGhoToken.sol b/src/contracts/gho/interfaces/IGhoToken.sol index b0914e9c..82e28330 100644 --- a/src/contracts/gho/interfaces/IGhoToken.sol +++ b/src/contracts/gho/interfaces/IGhoToken.sol @@ -2,6 +2,7 @@ pragma solidity ^0.8.0; import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol'; +import {IAccessControl} from '@openzeppelin/contracts/access/IAccessControl.sol'; import {IERC20Burnable} from './IERC20Burnable.sol'; import {IERC20Mintable} from './IERC20Mintable.sol'; @@ -9,7 +10,7 @@ import {IERC20Mintable} from './IERC20Mintable.sol'; * @title IGhoToken * @author Aave */ -interface IGhoToken is IERC20Burnable, IERC20Mintable, IERC20 { +interface IGhoToken is IERC20Burnable, IERC20Mintable, IERC20, IAccessControl { struct Facilitator { uint128 bucketCapacity; uint128 bucketLevel;