mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-24 19:45:55 +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: {
|
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