Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hensha256 committed Nov 1, 2024
1 parent 58fa41b commit e56c8b7
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/UniswapV4DeployerCompetition.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit e56c8b7

Please sign in to comment.