mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Remove redundant feePerVbyte variable
This commit is contained in:
parent
ebd98f850f
commit
5604369880
1 changed files with 1 additions and 2 deletions
|
@ -425,7 +425,6 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
|
|||
log.info("Fee for tx with size {}: {} " + Res.getBaseCurrencyCode() + "", txVsize, fee.toPlainString());
|
||||
|
||||
if (receiverAmount.isPositive()) {
|
||||
double feePerVbyte = Double.parseDouble(transactionFeeInputTextField.getText());
|
||||
double vkb = txVsize / 1000d;
|
||||
|
||||
String messageText = Res.get("shared.sendFundsDetailsWithFee",
|
||||
|
@ -433,7 +432,7 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
|
|||
withdrawFromTextField.getText(),
|
||||
withdrawToTextField.getText(),
|
||||
formatter.formatCoinWithCode(fee),
|
||||
feePerVbyte,
|
||||
Double.parseDouble(transactionFeeInputTextField.getText()),
|
||||
vkb,
|
||||
formatter.formatCoinWithCode(receiverAmount));
|
||||
if (dust.isPositive()) {
|
||||
|
|
Loading…
Add table
Reference in a new issue