Skip to content

Commit

Permalink
fix: put inherited interfaces at end per convention
Browse files Browse the repository at this point in the history
  • Loading branch information
CheyenneAtapour committed Jul 26, 2024
1 parent 8dd4da7 commit 835e347
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/contracts/misc/GhoAaveSteward.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/misc/GhoCcipSteward.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/misc/GhoGsmSteward.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 835e347

Please sign in to comment.