subway icon indicating copy to clipboard operation
subway copied to clipboard

Use a wrong variable in univ2.js

Open drinkthere opened this issue 1 year ago • 1 comments

In ./src/univ2.js line 82, 'if (newReserveB.lt(0) || reserveB.gt(reserveB)) {'

I think it should be 'if (newReserveB.lt(0) || newReserveB.gt(reserveB)) {'

drinkthere avatar Sep 18 '23 00:09 drinkthere

I agree!

Because reserveB.gt(reserveB) is always false

usamagujjar1122 avatar Sep 18 '23 20:09 usamagujjar1122