fixed wrong fee

This commit is contained in:
Manfred Karrer 2016-01-14 23:44:30 +01:00
parent f7c2a219c9
commit af17c4938d
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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();
}
}