Skip to content

Commit

Permalink
Set max buyer's security deposit to 20% instead of 10%
Browse files Browse the repository at this point in the history
A Bisq trader suggested that change to cover risks with volatility
for seller.
  • Loading branch information
ripcurlx committed Mar 25, 2019
1 parent a9a4315 commit 100d838
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/btc/wallet/Restrictions.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static double getMinBuyerSecurityDepositAsPercent() {
}

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.
Expand Down

0 comments on commit 100d838

Please sign in to comment.