diff --git a/src/contracts/misc/ArbGhoSteward.sol b/src/contracts/misc/ArbGhoSteward.sol index f93612e5..d114dc07 100644 --- a/src/contracts/misc/ArbGhoSteward.sol +++ b/src/contracts/misc/ArbGhoSteward.sol @@ -15,7 +15,7 @@ import {IGsm} from '../facilitators/gsm/interfaces/IGsm.sol'; import {IGsmFeeStrategy} from '../facilitators/gsm/feeStrategy/interfaces/IGsmFeeStrategy.sol'; import {IGhoToken} from '../gho/interfaces/IGhoToken.sol'; import {IArbGhoSteward} from './interfaces/IArbGhoSteward.sol'; -import {IOwnable, RateLimiter, UpgradeableBurnMintTokenPool} from './mocks/Dependencies.sol'; +import {IOwnable, RateLimiter, UpgradeableBurnMintTokenPool} from './deps/Dependencies.sol'; /** * @title ArbGhoSteward diff --git a/src/contracts/misc/GhoStewardV2.sol b/src/contracts/misc/GhoStewardV2.sol index 9b2afb76..3128b2aa 100644 --- a/src/contracts/misc/GhoStewardV2.sol +++ b/src/contracts/misc/GhoStewardV2.sol @@ -15,7 +15,7 @@ import {IGsm} from '../facilitators/gsm/interfaces/IGsm.sol'; import {IGsmFeeStrategy} from '../facilitators/gsm/feeStrategy/interfaces/IGsmFeeStrategy.sol'; import {IGhoToken} from '../gho/interfaces/IGhoToken.sol'; import {IGhoStewardV2} from './interfaces/IGhoStewardV2.sol'; -import {UpgradeableLockReleaseTokenPool, RateLimiter} from './mocks/Dependencies.sol'; +import {UpgradeableLockReleaseTokenPool, RateLimiter} from './deps/Dependencies.sol'; /** * @title GhoStewardV2 diff --git a/src/contracts/misc/mocks/Dependencies.sol b/src/contracts/misc/deps/Dependencies.sol similarity index 99% rename from src/contracts/misc/mocks/Dependencies.sol rename to src/contracts/misc/deps/Dependencies.sol index a734f1c9..e0e729c9 100644 --- a/src/contracts/misc/mocks/Dependencies.sol +++ b/src/contracts/misc/deps/Dependencies.sol @@ -814,7 +814,7 @@ contract UpgradeableLockReleaseTokenPool is emit LiquidityRemoved(msg.sender, amount); } - /// @notice Sets the rate limiter admin address. + /// @notice Sets the chain rate limiter config. /// @dev Only callable by the owner or the rate limiter admin. NOTE: overwrites the normal /// onlyAdmin check in the base implementation to also allow the rate limiter admin. /// @param remoteChainSelector The remote chain selector for which the rate limits apply. diff --git a/src/contracts/misc/interfaces/IArbGhoSteward.sol b/src/contracts/misc/interfaces/IArbGhoSteward.sol index 2ffb3069..928decd8 100644 --- a/src/contracts/misc/interfaces/IArbGhoSteward.sol +++ b/src/contracts/misc/interfaces/IArbGhoSteward.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; -import {RateLimiter} from '../mocks/Dependencies.sol'; +import {RateLimiter} from '../deps/Dependencies.sol'; /** * @title IGhoStewardV2 diff --git a/src/contracts/misc/interfaces/IGhoStewardV2.sol b/src/contracts/misc/interfaces/IGhoStewardV2.sol index 25fc9867..5c292aa0 100644 --- a/src/contracts/misc/interfaces/IGhoStewardV2.sol +++ b/src/contracts/misc/interfaces/IGhoStewardV2.sol @@ -1,7 +1,7 @@ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; -import {RateLimiter} from '../mocks/Dependencies.sol'; +import {RateLimiter} from '../deps/Dependencies.sol'; /** * @title IGhoStewardV2 diff --git a/src/test/TestArbGhoSteward.t.sol b/src/test/TestArbGhoSteward.t.sol index 7eaf1355..7e64e3f6 100644 --- a/src/test/TestArbGhoSteward.t.sol +++ b/src/test/TestArbGhoSteward.t.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.0; import './TestGhoBase.t.sol'; -import {RateLimiter} from 'src/contracts/misc/mocks/Dependencies.sol'; +import {RateLimiter} from 'src/contracts/misc/deps/Dependencies.sol'; contract TestArbGhoSteward is TestGhoBase { using ReserveConfiguration for DataTypes.ReserveConfigurationMap; diff --git a/src/test/TestGhoBase.t.sol b/src/test/TestGhoBase.t.sol index c1c7b4b1..6b99f90d 100644 --- a/src/test/TestGhoBase.t.sol +++ b/src/test/TestGhoBase.t.sol @@ -82,10 +82,10 @@ import {SampleSwapFreezer} from '../contracts/facilitators/gsm/misc/SampleSwapFr import {GsmRegistry} from '../contracts/facilitators/gsm/misc/GsmRegistry.sol'; // CCIP contracts -import {UpgradeableTokenPool} from '../contracts/misc/mocks/Dependencies.sol'; -import {UpgradeableLockReleaseTokenPool} from '../contracts/misc/mocks/Dependencies.sol'; -import {UpgradeableBurnMintTokenPool} from '../contracts/misc/mocks/Dependencies.sol'; -import {RateLimiter} from '../contracts/misc/mocks/Dependencies.sol'; +import {UpgradeableTokenPool} from '../contracts/misc/deps/Dependencies.sol'; +import {UpgradeableLockReleaseTokenPool} from '../contracts/misc/deps/Dependencies.sol'; +import {UpgradeableBurnMintTokenPool} from '../contracts/misc/deps/Dependencies.sol'; +import {RateLimiter} from '../contracts/misc/deps/Dependencies.sol'; contract TestGhoBase is Test, Constants, Events { using WadRayMath for uint256; diff --git a/src/test/TestGhoStewardV2.t.sol b/src/test/TestGhoStewardV2.t.sol index 2b7651f2..9212ea1f 100644 --- a/src/test/TestGhoStewardV2.t.sol +++ b/src/test/TestGhoStewardV2.t.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.0; import './TestGhoBase.t.sol'; -import {RateLimiter} from '../contracts/misc/mocks/Dependencies.sol'; +import {RateLimiter} from '../contracts/misc/deps/Dependencies.sol'; contract TestGhoStewardV2 is TestGhoBase { using ReserveConfiguration for DataTypes.ReserveConfigurationMap;