Handle floats number division
Issue #380 (closed)
To find 10x difference between bids - we divide it, but like floats. So in result 28000.10 / 2800.01 gives 9.999... that is not 10 by JavaScript logic. So I increment bid in 100 times and it become integers and solving the problem of floats dividing.
Edited by Vadym Tishchenko