You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With the new trade limits implementation, lot sizes can be thousands of times smaller than what we're used to dealing with. Our current maxOrder implementation does some rough estimation, and then zones in on the exact max order by looping with a lots-- until it finds the value. This is a bad idea if lot sizes are really small. Instead, we should do a binary search.
With the new trade limits implementation, lot sizes can be thousands of times smaller than what we're used to dealing with. Our current
maxOrder
implementation does some rough estimation, and then zones in on the exact max order by looping with alots--
until it finds the value. This is a bad idea if lot sizes are really small. Instead, we should do a binary search.dcrdex/client/asset/btc/btc.go
Lines 1874 to 1885 in 6a12553
The text was updated successfully, but these errors were encountered: