Skip to content

Commit

Permalink
fix: rename dependency folder
Browse files Browse the repository at this point in the history
  • Loading branch information
CheyenneAtapour committed Jul 22, 2024
1 parent d358066 commit b2d1c93
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/contracts/misc/ArbGhoSteward.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/misc/GhoStewardV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/misc/interfaces/IArbGhoSteward.sol
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/misc/interfaces/IGhoStewardV2.sol
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/test/TestArbGhoSteward.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
8 changes: 4 additions & 4 deletions src/test/TestGhoBase.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/test/TestGhoStewardV2.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b2d1c93

Please sign in to comment.