Remove redundant code in updateItem

This commit is contained in:
BtcContributor 2021-05-11 10:23:51 +02:00
parent 77f5dc8822
commit 1a129b3fa9
No known key found for this signature in database
GPG key ID: DA582457496C7F6D

View file

@ -744,12 +744,7 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
useCustomFee.setSelected(false);
transactionFeeInputTextField.setEditable(false);
transactionFeeInputTextField.setPromptText(Res.get("funds.withdrawal.useCustomFeeValueInfo"));
transactionFeeInputTextField.setText(String.valueOf(feeService.getTxFeePerVbyte().value));
transactionFeeInputTextField.focusedProperty().addListener(transactionFeeFocusedListener);
feeService.feeUpdateCounterProperty().addListener(transactionFeeChangeListener);
useCustomFee.selectedProperty().addListener(useCustomFeeCheckboxListener);
inputsToggleGroup.selectedToggleProperty().addListener(inputsToggleGroupListener);
}