Skip to content

Commit

Permalink
Reduce min. trade fee from 0.0002 BTC to 0.00005 BTC #1394
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed Feb 24, 2018
1 parent b22667e commit 70a452a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/io/bisq/core/provider/fee/FeeService.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ public FeeService(FeeProvider feeProvider) {
*/
switch (baseCurrencyCode) {
case "BTC":
MIN_MAKER_FEE_IN_BASE_CUR = 20_000; // 4 USD at BTC price 20000 USD
MIN_TAKER_FEE_IN_BASE_CUR = 20_000;
MIN_MAKER_FEE_IN_BASE_CUR = 5_000; // 4 USD at BTC price 20000 USD
MIN_TAKER_FEE_IN_BASE_CUR = 5_000;
DEFAULT_MAKER_FEE_IN_BASE_CUR = 200_000; // 10 USD at BTC price 20000 USD for 0.25 BTC (maxTradeAmount for most fiat trades)
DEFAULT_TAKER_FEE_IN_BASE_CUR = 200_000;
txFeePerByte = BTC_DEFAULT_TX_FEE;
Expand Down

0 comments on commit 70a452a

Please sign in to comment.