mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-19 23:36:00 -04:00
Reduce min. required mining fee for funding tx to 0.0001 BTC
This commit is contained in:
parent
0b93641129
commit
dcd1f8636a
@ -60,9 +60,13 @@ public class FeePolicy {
|
||||
return FEE_PER_KB;
|
||||
}
|
||||
|
||||
// Some wallets (Mycelium) don't support higher fees
|
||||
// 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(20_000);
|
||||
return Coin.valueOf(10_000);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user