Skip to content

Commit

Permalink
rm console2
Browse files Browse the repository at this point in the history
  • Loading branch information
kinrezC committed Apr 2, 2024
1 parent 25b3e07 commit b26cf23
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/NTokenGeometricMean/NTokenGeometricMeanSolver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import {
computeSwapDeltaLiquidity
} from "src/NTokenGeometricMean/NTokenGeometricMeanMath.sol";
import { FixedPointMathLib } from "solmate/utils/FixedPointMathLib.sol";
import "forge-std/console2.sol";

contract NTokenGeometricMeanSolver {
using FixedPointMathLib for uint256;
Expand Down
3 changes: 0 additions & 3 deletions src/NTokenStrategy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity ^0.8.13;

import { IStrategy, Pool } from "src/interfaces/IStrategy.sol";
import "forge-std/console2.sol";

/**
* @dev Thrown when the length of the deltas array is not the
Expand Down Expand Up @@ -141,8 +140,6 @@ abstract contract NTokenStrategy is IStrategy {
pool, params, tokenInIndex, tokenOutIndex, amountIn, amountOut
);

console2.log("deltaLiquidity: %d", deltaLiquidity);

pool.reserves[tokenInIndex] += amountIn;
pool.reserves[tokenOutIndex] -= amountOut;

Expand Down

0 comments on commit b26cf23

Please sign in to comment.