Skip to content

Commit

Permalink
Increase default tx fee for non-trade txs to 150_000 sat
Browse files Browse the repository at this point in the history
  • Loading branch information
ManfredKarrer committed May 17, 2017
1 parent b38e780 commit c5e23fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/io/bitsquare/btc/FeePolicy.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static Coin getFixedTxFeeForTrades() {
// The BitcoinJ fee calculation use kb so a tx size < 1kb will still pay the fee for a kb tx.
// Our payout tx has about 370 bytes so we get a fee/kb value of about 90 satoshi/byte making it high priority
// Other payout transactions (E.g. arbitrators many collected transactions) will go with 30 satoshi/byte if > 1kb
private static Coin NON_TRADE_FEE_PER_KB = Coin.valueOf(60_000); // 0.0003 BTC about 0.3 EUR @ 1000 EUR/BTC
private static Coin NON_TRADE_FEE_PER_KB = Coin.valueOf(150_000); // 0.0003 BTC about 0.3 EUR @ 1000 EUR/BTC

public static void setNonTradeFeePerKb(Coin nonTradeFeePerKb) {
NON_TRADE_FEE_PER_KB = nonTradeFeePerKb;
Expand Down

0 comments on commit c5e23fe

Please sign in to comment.