mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-16 15:58:08 +00:00
preserve withdraw fields when page reactivated while in progress
Some checks failed
CI / build (macos-13) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
Codacy Coverage Reporter / Publish coverage (push) Has been cancelled
CodeQL / Analyze (java) (push) Has been cancelled
Some checks failed
CI / build (macos-13) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
Codacy Coverage Reporter / Publish coverage (push) Has been cancelled
CodeQL / Analyze (java) (push) Has been cancelled
This commit is contained in:
parent
e18d281ca9
commit
caebd58303
1 changed files with 6 additions and 2 deletions
|
@ -242,8 +242,12 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
|
|||
if (GUIUtil.isReadyForTxBroadcastOrShowPopup(xmrWalletService)) {
|
||||
try {
|
||||
|
||||
// collect tx fields to local variables
|
||||
String withdrawToAddress = withdrawToTextField.getText();
|
||||
boolean sendMax = this.sendMax;
|
||||
BigInteger amount = this.amount;
|
||||
|
||||
// validate address
|
||||
final String withdrawToAddress = withdrawToTextField.getText();
|
||||
if (!MoneroUtils.isValidAddress(withdrawToAddress, XmrWalletService.getMoneroNetworkType())) {
|
||||
throw new IllegalArgumentException(Res.get("validation.xmr.invalidAddress"));
|
||||
}
|
||||
|
@ -298,7 +302,7 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
|
|||
BigInteger receiverAmount = tx.getOutgoingTransfer().getDestinations().get(0).getAmount();
|
||||
BigInteger fee = tx.getFee();
|
||||
String messageText = Res.get("shared.sendFundsDetailsWithFee",
|
||||
HavenoUtils.formatXmr(amount, true),
|
||||
HavenoUtils.formatXmr(receiverAmount.add(fee), true),
|
||||
withdrawToAddress,
|
||||
HavenoUtils.formatXmr(fee, true),
|
||||
HavenoUtils.formatXmr(receiverAmount, true));
|
||||
|
|
Loading…
Reference in a new issue