Skip to content

Commit

Permalink
chore: remove unnecessary console2.log
Browse files Browse the repository at this point in the history
  • Loading branch information
chefburger committed May 28, 2024
1 parent 4fdc4cb commit d4765da
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .forge-snapshots/BinHookTest#testBurnSucceedsWithHook.snap
Original file line number Diff line number Diff line change
@@ -1 +1 @@
185612
181729
Original file line number Diff line number Diff line change
@@ -1 +1 @@
189499
185616
2 changes: 1 addition & 1 deletion .forge-snapshots/BinHookTest#testMintSucceedsWithHook.snap
Original file line number Diff line number Diff line change
@@ -1 +1 @@
335453
331570
2 changes: 1 addition & 1 deletion .forge-snapshots/BinHookTest#testSwapSucceedsWithHook.snap
Original file line number Diff line number Diff line change
@@ -1 +1 @@
197719
193836
Original file line number Diff line number Diff line change
@@ -1 +1 @@
32279
32291
5 changes: 0 additions & 5 deletions src/test/MockVault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ import {BalanceDelta} from "../types/BalanceDelta.sol";
import {Currency, CurrencyLibrary} from "../types/Currency.sol";
import {SafeCast} from "../libraries/SafeCast.sol";

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

contract MockVault {
using SafeCast for *;
using PoolIdLibrary for PoolKey;
Expand All @@ -25,9 +23,6 @@ contract MockVault {
PoolId poolId = key.toId();
balanceDeltaOfPool[poolId] = delta;

console2.log("accountPoolBalanceDelta", delta.amount0());
console2.log("accountPoolBalanceDelta", delta.amount1());

_accountDeltaOfPoolManager(key.poolManager, key.currency0, delta.amount0());
_accountDeltaOfPoolManager(key.poolManager, key.currency1, delta.amount1());
}
Expand Down

0 comments on commit d4765da

Please sign in to comment.