Merge pull request #2575 from ManfredKarrer/higher-max-buyer-security-deposit

Set max buyer's security deposit to 20% instead of 10%
This commit is contained in:
Christoph Atteneder 2019-03-25 10:24:48 +01:00 committed by GitHub
commit ab4d203ece
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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.