mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-04-20 07:46:05 -04:00
fixed wrong fee
This commit is contained in:
parent
f7c2a219c9
commit
af17c4938d
@ -43,7 +43,7 @@ public class FeePolicy {
|
||||
public static final Coin TX_FEE = Coin.valueOf(20000); // 0.0002 BTC about 0.8 EUR @ 400 EUR/BTC: about 70 satoshi /byte
|
||||
|
||||
static {
|
||||
Wallet.SendRequest.DEFAULT_FEE_PER_KB = Coin.valueOf(5000); // 0.0005 BTC we use a higher value. original is Coin.valueOf(1000)
|
||||
Wallet.SendRequest.DEFAULT_FEE_PER_KB = TX_FEE;
|
||||
}
|
||||
|
||||
public static final Coin DUST = Coin.valueOf(546);
|
||||
|
@ -211,7 +211,7 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
|
||||
}
|
||||
}
|
||||
else {
|
||||
new Popup().error("The amount to transfer is lower the the transaction fee and the min. possible tx value.").show();
|
||||
new Popup().warning("The amount to transfer is lower than the transaction fee and the min. possible tx value.").show();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user