mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-03-20 22:28:53 +00:00
Merge pull request #2874
387e643
Transfer: fix 'call method estimateTransactionFeeAsync of undefined' (xiphon)
This commit is contained in:
commit
d7207bfde3
1 changed files with 1 additions and 1 deletions
|
@ -335,7 +335,7 @@ Rectangle {
|
||||||
property var fee: {
|
property var fee: {
|
||||||
estimatedFee = null;
|
estimatedFee = null;
|
||||||
estimating = sendButton.enabled;
|
estimating = sendButton.enabled;
|
||||||
if (!sendButton.enabled) {
|
if (!sendButton.enabled || !currentWallet) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
currentWallet.estimateTransactionFeeAsync(
|
currentWallet.estimateTransactionFeeAsync(
|
||||||
|
|
Loading…
Reference in a new issue