Skip to content

Commit

Permalink
remove console log and silence compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
jhweintraub committed Oct 10, 2024
1 parent ea77929 commit 7dc40df
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/gas-snapshots/ccip.gas-snapshot
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ TokenPoolAndProxy:test_setPreviousPool_Success() (gas: 5168919)
TokenPoolAndProxyMigration:test_tokenPoolMigration_Success_1_2() (gas: 9975724)
TokenPoolAndProxyMigration:test_tokenPoolMigration_Success_1_4() (gas: 10174033)
TokenPoolFactoryTests:test_TokenPoolFactory_Constructor_Revert() (gas: 1048467)
TokenPoolFactoryTests:test_createTokenPoolLockRelease_ExistingToken_predict_Success() (gas: 11782140)
TokenPoolFactoryTests:test_createTokenPoolLockRelease_ExistingToken_predict_Success() (gas: 11781716)
TokenPoolFactoryTests:test_createTokenPool_ExistingRemoteToken_AndPredictPool_Success() (gas: 12423735)
TokenPoolFactoryTests:test_createTokenPool_WithNoExistingRemoteContracts_predict_Success() (gas: 12765036)
TokenPoolFactoryTests:test_createTokenPool_WithNoExistingTokenOnRemoteChain_Success() (gas: 5841282)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ import {TokenAdminRegistrySetup} from "./TokenAdminRegistry.t.sol";

import {Create2} from "../../../vendor/openzeppelin-solidity/v5.0.2/contracts/utils/Create2.sol";

import {console2 as console} from "forge-std/console2.sol";

contract TokenPoolFactorySetup is TokenAdminRegistrySetup {
using Create2 for bytes32;

Expand Down Expand Up @@ -387,7 +385,6 @@ contract TokenPoolFactoryTests is TokenPoolFactorySetup {

function test_createTokenPoolLockRelease_ExistingToken_predict_Success() public {
vm.startPrank(OWNER);
bytes32 dynamicSalt = keccak256(abi.encodePacked(FAKE_SALT, OWNER));

// We have to create a new factory, registry module, and token admin registry to simulate the other chain
TokenAdminRegistry newTokenAdminRegistry = new TokenAdminRegistry();
Expand Down

0 comments on commit 7dc40df

Please sign in to comment.