Skip to content

Commit

Permalink
Remove require(feeAmountTickSpacing[fee] == 0);
Browse files Browse the repository at this point in the history
  • Loading branch information
its-everdred committed Jul 16, 2024
1 parent 11b6857 commit d31b37e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/UniswapV3Factory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ contract UniswapV3Factory is IUniswapV3Factory, UniswapV3PoolDeployer, NoDelegat
// TickBitmap#nextInitializedTickWithinOneWord overflows int24 container from a valid tick
// 16384 ticks represents a >5x price change with ticks of 1 bips
require(tickSpacing > 0 && tickSpacing < 16384);
require(feeAmountTickSpacing[fee] == 0);
//require(feeAmountTickSpacing[fee] == 0);

feeAmountTickSpacing[fee] = tickSpacing;
emit FeeAmountEnabled(fee, tickSpacing);
Expand Down

0 comments on commit d31b37e

Please sign in to comment.