Skip to content

Commit

Permalink
chore: rm duplicate check
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaSethi committed Dec 24, 2024
1 parent 62b189b commit b8e50a6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,12 +204,7 @@ contract AaveV3Arbitrum_GHOCCIP151Upgrade_20241209_Base is ProtocolV3TestBase {

function _getDynamicParams(address tokenPool) internal view returns (bytes memory) {
IUpgradeableBurnMintTokenPool_1_4 ghoTokenPool = IUpgradeableBurnMintTokenPool_1_4(tokenPool);
return
abi.encode(
ghoTokenPool.owner(),
ghoTokenPool.getSupportedChains(),
ghoTokenPool.getAllowListEnabled()
);
return abi.encode(ghoTokenPool.owner(), ghoTokenPool.getSupportedChains());
}

function _tokenBucketToConfig(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ contract AaveV3Ethereum_GHOCCIP151Upgrade_20241209_Base is ProtocolV3TestBase {
abi.encode(
ghoTokenPool.owner(),
ghoTokenPool.getSupportedChains(),
ghoTokenPool.getAllowListEnabled(),
ghoTokenPool.getRebalancer(),
ghoTokenPool.getBridgeLimit()
);
Expand Down

0 comments on commit b8e50a6

Please sign in to comment.