mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
Decrease the tolerance window for offers
This commit is contained in:
parent
a27666c0e4
commit
913bc41928
@ -70,11 +70,11 @@ import static com.google.common.base.Preconditions.checkNotNull;
|
|||||||
@Slf4j
|
@Slf4j
|
||||||
public class Offer implements NetworkPayload, PersistablePayload {
|
public class Offer implements NetworkPayload, PersistablePayload {
|
||||||
|
|
||||||
// We allow max. 2 % difference between own offerPayload price calculation and takers calculation.
|
// We allow max. 0.5 % difference between own offerPayload price calculation and takers calculation.
|
||||||
// Market price might be different at maker's and takers side so we need a bit of tolerance.
|
// Market price might be different at maker's and takers side so we need a bit of tolerance.
|
||||||
// The tolerance will get smaller once we have multiple price feeds avoiding fast price fluctuations
|
// The tolerance will get smaller once we have multiple price feeds avoiding fast price fluctuations
|
||||||
// from one provider.
|
// from one provider.
|
||||||
final static double PRICE_TOLERANCE = 0.02;
|
final static double PRICE_TOLERANCE = 0.005;
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// Enums
|
// Enums
|
||||||
|
Loading…
Reference in New Issue
Block a user