Skip to content

Commit

Permalink
fix: Add IAccessControl interface to IGhoToken (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf authored Jul 4, 2023
1 parent 460ce07 commit fc08657
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/contracts/gho/interfaces/IGhoToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
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';

/**
* @title IGhoToken
* @author Aave
*/
interface IGhoToken is IERC20Burnable, IERC20Mintable, IERC20 {
interface IGhoToken is IERC20Burnable, IERC20Mintable, IERC20, IAccessControl {
struct Facilitator {
uint128 bucketCapacity;
uint128 bucketLevel;
Expand Down

0 comments on commit fc08657

Please sign in to comment.