Skip to content

Commit

Permalink
fix: comments and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CheyenneAtapour committed Aug 7, 2024
1 parent 9e20b2a commit d538a77
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions src/contracts/misc/GhoGsmSteward.sol
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import {FixedFeeStrategy} from '../facilitators/gsm/feeStrategy/FixedFeeStrategy.sol';
import {IGsm} from '../facilitators/gsm/interfaces/IGsm.sol';
import {IGsmFeeStrategy} from '../facilitators/gsm/feeStrategy/interfaces/IGsmFeeStrategy.sol';
import {IGhoGsmSteward} from './interfaces/IGhoGsmSteward.sol';
import {RiskCouncilControlled} from './RiskCouncilControlled.sol';
import {IFixedFeeStrategyFactory} from 'src/contracts/facilitators/gsm/feeStrategy/interfaces/IFixedFeeStrategyFactory.sol';
import {IFixedFeeStrategyFactory} from '../facilitators/gsm/feeStrategy/interfaces/IFixedFeeStrategyFactory.sol';

/**
* @title GhoGsmSteward
Expand Down Expand Up @@ -49,9 +48,7 @@ contract GhoGsmSteward is RiskCouncilControlled, IGhoGsmSteward {
FIXED_FEE_STRATEGY_FACTORY = fixedFeeStrategyFactory;
}

/**
* @inheritdoc IGhoGsmSteward
*/
/// @inheritdoc IGhoGsmSteward
function updateGsmExposureCap(
address gsm,
uint128 newExposureCap
Expand All @@ -67,9 +64,7 @@ contract GhoGsmSteward is RiskCouncilControlled, IGhoGsmSteward {
IGsm(gsm).updateExposureCap(newExposureCap);
}

/**
* @inheritdoc IGhoGsmSteward
*/
/// @inheritdoc IGhoGsmSteward
function updateGsmBuySellFees(
address gsm,
uint256 buyFee,
Expand Down Expand Up @@ -101,9 +96,7 @@ contract GhoGsmSteward is RiskCouncilControlled, IGhoGsmSteward {
IGsm(gsm).updateFeeStrategy(strategy);
}

/**
* @inheritdoc IGhoGsmSteward
*/
/// @inheritdoc IGhoGsmSteward
function getGsmTimelocks(address gsm) external view returns (GsmDebounce memory) {
return _gsmTimelocksByAddress[gsm];
}
Expand Down

0 comments on commit d538a77

Please sign in to comment.