From e56c8b7f72f07d0d065e3864ff43c2e39411fba5 Mon Sep 17 00:00:00 2001 From: Alice Henshaw Date: Fri, 1 Nov 2024 16:22:32 -0700 Subject: [PATCH] remove console logs --- test/UniswapV4DeployerCompetition.t.sol | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/UniswapV4DeployerCompetition.t.sol b/test/UniswapV4DeployerCompetition.t.sol index 080947e28..f20b4dcee 100644 --- a/test/UniswapV4DeployerCompetition.t.sol +++ b/test/UniswapV4DeployerCompetition.t.sol @@ -3,7 +3,6 @@ pragma solidity ^0.8.20; import {Owned} from "solmate/src/auth/Owned.sol"; import {Test} from "forge-std/Test.sol"; -import {console2} from "forge-std/console2.sol"; import {PoolManager} from "@uniswap/v4-core/src/PoolManager.sol"; import {UniswapV4DeployerCompetition} from "../src/UniswapV4DeployerCompetition.sol"; import {TickMath} from "@uniswap/v4-core/src/libraries/TickMath.sol"; @@ -85,9 +84,7 @@ contract UniswapV4DeployerCompetitionTest is Test { function test_updateBestAddress_equalSalt_reverts_WorseAddress(bytes32 salt) public { vm.assume(salt != bytes32(0)); - console2.logBytes32(salt); salt = (salt & mask20bytes) | bytes32(bytes20(winner)); - console2.logBytes32(salt); vm.prank(winner); competition.updateBestAddress(salt);