diff options
| author | selsta <selsta@sent.at> | 2021-04-13 07:27:05 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2021-04-13 07:27:05 +0200 |
| commit | f53af12e026263e212c7c1e3fb21bd25f5234046 (patch) | |
| tree | dc5aa9df687859ec9aa7732cd1de3539ac2e74e4 /main.qml | |
| parent | 816eeb46479e937db1073c24f9137fd8b040cd90 (diff) | |
| download | monzero-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.qml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |
