Wallet: estimateTransactionFeeAsync - multi dest support

This commit is contained in:
xiphon
2021-02-04 11:32:30 +00:00
parent c1573c2c2a
commit b20b956e15
3 changed files with 32 additions and 16 deletions

View File

@@ -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);