Uniswap / v3-core

🦄 🦄 🦄 Core smart contracts of Uniswap v3
https://uniswap.org
Other
4.28k stars 2.62k forks source link

fix TickBitmap, SwapMath, Oracle: replace "if (A && B)" to save gas fee issue #984

Open SujoySust opened 1 month ago

SujoySust commented 1 month ago

Replaced "if (A && B) {}" with "if (A) {if (B) {} }" in mentioned six cases