diff options
| author | xiphon <xiphon@protonmail.com> | 2021-02-04 11:32:30 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2021-02-04 11:32:30 +0000 |
| commit | b20b956e15184d39925ac415020ea886c7d47e87 (patch) | |
| tree | f19bbcd1fe149cc41e13304c2b98a3f748734554 /pages | |
| parent | c1573c2c2acb0025ef3cec19e56061aa582b0d32 (diff) | |
| download | monzero-gui-b20b956e15184d39925ac415020ea886c7d47e87.tar.gz monzero-gui-b20b956e15184d39925ac415020ea886c7d47e87.tar.xz monzero-gui-b20b956e15184d39925ac415020ea886c7d47e87.zip | |
Wallet: estimateTransactionFeeAsync - multi dest support
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/Transfer.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 828d7b5d..9a4d8b18 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -361,8 +361,8 @@ Rectangle { return; } currentWallet.estimateTransactionFeeAsync( - addressLine.text, - walletManager.amountFromString(amountLine.text), + [addressLine.text], + [walletManager.amountFromString(amountLine.text)], priorityModelV5.get(priorityDropdown.currentIndex).priority, function (amount) { estimatedFee = Utils.removeTrailingZeros(amount); |
