From 029eef09aba8ac90ecef4a43b587034c234bd7d1 Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Tue, 26 Apr 2016 17:20:47 +0200 Subject: [PATCH] Removed unused getter --- core/src/main/java/io/bitsquare/btc/FeePolicy.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/core/src/main/java/io/bitsquare/btc/FeePolicy.java b/core/src/main/java/io/bitsquare/btc/FeePolicy.java index 57eccee178..3fcfc93752 100644 --- a/core/src/main/java/io/bitsquare/btc/FeePolicy.java +++ b/core/src/main/java/io/bitsquare/btc/FeePolicy.java @@ -60,16 +60,6 @@ public class FeePolicy { return NON_TRADE_FEE_PER_KB; } - // Some wallets don't support manual fees. Most use at least 0.0001 BTC (0.04 EUR @ 400 EUR/BTC) - // To avoid rejecting deposit tx with too low mining fees we reduce the min. - // required fee to 0.0001 BTC. There is a risk that the tx does not get fast into the blockchain but it seems it has less - // negative consequences as forcing the user to set a sufficiently high fee which is impossible in some wallets - // like in the old MultiBit wallet or Coinbase. Unfortunately there is no perfect solution for that problem. - public static Coin getMinRequiredFeeForFundingTx() { - return Coin.valueOf(10_000); - } - - // 0.0005 BTC 0.05% of 1 BTC about 0.2 EUR @ 400 EUR/BTC public static Coin getCreateOfferFee() { // We need to pay the quite high miner fee of 30_000 from the trading fee tx so 30_000 us our lower limit