Submitted by gpersoon, also found by 0xImpostor
Ive seen comments which are confusing:
~10^31 or 10 Trillion (10^13) ==> probably should be 2^31
x * 5e17 ==(x * 10e18) / 2`   ==> probably should be 1e18/2
// https://github.com/code-423n4/2021-08-floatcapital/blob/main/contracts/contracts/Staker.sol#L19
// 2^52 ~= 4.5e15
// With an exponent of 5, the largest total liquidity possible in a market (to avoid integer overflow on exponentiation) is ~10^31 or 10 Trillion (10^13)
//https://github.com/code-423n4/2021-08-floatcapital/blob/main/contracts/contracts/Staker.sol#L480
// NOTE: x * 5e17 == (x * 10e18) / 2
Recommend double checking the comments.
JasoonS (Float) confirmed:
0xean (judge) commented:
