diff --git a/core/src/main/java/io/bitsquare/btc/FeePolicy.java b/core/src/main/java/io/bitsquare/btc/FeePolicy.java index 4c830dd71e5..32daae6e9d7 100644 --- a/core/src/main/java/io/bitsquare/btc/FeePolicy.java +++ b/core/src/main/java/io/bitsquare/btc/FeePolicy.java @@ -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;