aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2021-04-13 07:27:05 +0200
committerselsta <selsta@sent.at>2021-04-13 07:27:05 +0200
commitf53af12e026263e212c7c1e3fb21bd25f5234046 (patch)
treedc5aa9df687859ec9aa7732cd1de3539ac2e74e4 /main.qml
parent816eeb46479e937db1073c24f9137fd8b040cd90 (diff)
downloadmonzero-gui-f53af12e026263e212c7c1e3fb21bd25f5234046.tar.gz
monzero-gui-f53af12e026263e212c7c1e3fb21bd25f5234046.tar.xz
monzero-gui-f53af12e026263e212c7c1e3fb21bd25f5234046.zip
Wallet: fix transfer with Qt 5.12
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.qml b/main.qml
index c5829db8..6701d7e2 100644
--- a/main.qml
+++ b/main.qml
@@ -885,7 +885,7 @@ ApplicationWindow {
return recipient.address;
});
const amountsxmr = recipients.map(function (recipient) {
- return walletManager.amountFromString(recipient.amount);
+ return recipient.amount;
});
currentWallet.createTransactionAsync(addresses, paymentId, amountsxmr, mixinCount, priority);
}