mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-23 06:14:11 -04:00
fixed wrong fee
This commit is contained in:
parent
f7c2a219c9
commit
af17c4938d
2 changed files with 2 additions and 2 deletions
|
@ -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
|
public static final Coin TX_FEE = Coin.valueOf(20000); // 0.0002 BTC about 0.8 EUR @ 400 EUR/BTC: about 70 satoshi /byte
|
||||||
|
|
||||||
static {
|
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);
|
public static final Coin DUST = Coin.valueOf(546);
|
||||||
|
|
|
@ -211,7 +211,7 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
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…
Add table
Add a link
Reference in a new issue