Skip to content

Commit

Permalink
fix: function ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
CheyenneAtapour committed Aug 9, 2024
1 parent ab80340 commit 3a1aadc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/contracts/misc/deps/IUpgradeableLockReleaseTokenPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ import {RateLimiter} from './RateLimiter.sol';
interface IUpgradeableLockReleaseTokenPool {
function setBridgeLimit(uint256 newBridgeLimit) external;

function setChainRateLimiterConfig(
uint64 remoteChainSelector,
RateLimiter.Config memory outboundConfig,
RateLimiter.Config memory inboundConfig
) external;

function getBridgeLimit() external view returns (uint256);

function getCurrentOutboundRateLimiterState(
Expand All @@ -17,10 +23,4 @@ interface IUpgradeableLockReleaseTokenPool {
function getCurrentInboundRateLimiterState(
uint64 remoteChainSelector
) external view returns (RateLimiter.TokenBucket memory);

function setChainRateLimiterConfig(
uint64 remoteChainSelector,
RateLimiter.Config memory outboundConfig,
RateLimiter.Config memory inboundConfig
) external;
}

0 comments on commit 3a1aadc

Please sign in to comment.