Set max buyer's security deposit to 20% instead of 10%

A Bisq trader suggested that change to cover risks with volatility
for seller.
This commit is contained in:
Christoph Atteneder 2019-03-25 10:17:08 +01:00
parent a9a43159f9
commit 100d838908
No known key found for this signature in database
GPG key ID: CD5DC1C529CDFD3B

View file

@ -59,7 +59,7 @@ public class Restrictions {
}
public static double getMaxBuyerSecurityDepositAsPercent() {
return 0.1; // 10% of trade amount. For a 1 BTC trade it is about 400 USD @ 4000 USD/BTC
return 0.2; // 20% of trade amount. For a 1 BTC trade it is about 800 USD @ 4000 USD/BTC
}
// We use MIN_BUYER_SECURITY_DEPOSIT as well as lower bound in case of small trade amounts.