diff --git a/src/contracts/misc/GhoAaveSteward.sol b/src/contracts/misc/GhoAaveSteward.sol index bacabaac..2b6947b8 100644 --- a/src/contracts/misc/GhoAaveSteward.sol +++ b/src/contracts/misc/GhoAaveSteward.sol @@ -18,7 +18,7 @@ import {RiskCouncilControlled} from './RiskCouncilControlled.sol'; * @notice Helper contract for managing parameters of the GHO reserve * @dev Only the Risk Council is able to action contract's functions, based on specific conditions that have been agreed upon with the community. */ -contract GhoAaveSteward is Ownable, IGhoAaveSteward, RiskCouncilControlled { +contract GhoAaveSteward is Ownable, RiskCouncilControlled, IGhoAaveSteward { using ReserveConfiguration for DataTypes.ReserveConfigurationMap; /// @inheritdoc IGhoAaveSteward diff --git a/src/contracts/misc/GhoCcipSteward.sol b/src/contracts/misc/GhoCcipSteward.sol index 2512d5e2..6e14991b 100644 --- a/src/contracts/misc/GhoCcipSteward.sol +++ b/src/contracts/misc/GhoCcipSteward.sol @@ -14,7 +14,7 @@ import {UpgradeableLockReleaseTokenPool, RateLimiter} from './deps/Dependencies. * @notice Helper contract for managing parameters of the CCIP token pools * @dev Only the Risk Council is able to action contract's functions, based on specific conditions that have been agreed upon with the community. */ -contract GhoCcipSteward is Ownable, IGhoCcipSteward, RiskCouncilControlled { +contract GhoCcipSteward is Ownable, RiskCouncilControlled, IGhoCcipSteward { using EnumerableSet for EnumerableSet.AddressSet; /// @inheritdoc IGhoCcipSteward diff --git a/src/contracts/misc/GhoGsmSteward.sol b/src/contracts/misc/GhoGsmSteward.sol index 392b5554..c869b6f1 100644 --- a/src/contracts/misc/GhoGsmSteward.sol +++ b/src/contracts/misc/GhoGsmSteward.sol @@ -15,7 +15,7 @@ import {RiskCouncilControlled} from './RiskCouncilControlled.sol'; * @notice Helper contract for managing parameters of the GSM * @dev Only the Risk Council is able to action contract's functions, based on specific conditions that have been agreed upon with the community. */ -contract GhoGsmSteward is Ownable, IGhoGsmSteward, RiskCouncilControlled { +contract GhoGsmSteward is Ownable, RiskCouncilControlled, IGhoGsmSteward { using EnumerableSet for EnumerableSet.AddressSet; /// @inheritdoc IGhoGsmSteward