mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
Transfer: fix 'call method estimateTransactionFeeAsync of undefined'
This commit is contained in:
parent
4141832a4d
commit
387e643ae9
1 changed files with 1 additions and 1 deletions
|
@ -335,7 +335,7 @@ Rectangle {
|
|||
property var fee: {
|
||||
estimatedFee = null;
|
||||
estimating = sendButton.enabled;
|
||||
if (!sendButton.enabled) {
|
||||
if (!sendButton.enabled || !currentWallet) {
|
||||
return;
|
||||
}
|
||||
currentWallet.estimateTransactionFeeAsync(
|
||||
|
|
Loading…
Reference in a new issue