mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-31 16:09:49 +00:00
fix: initial scan
This commit is contained in:
parent
477aff098c
commit
f58fca3020
1 changed files with 1 additions and 1 deletions
|
@ -253,7 +253,7 @@ abstract class ElectrumWalletBase
|
|||
await _setInitialHeight();
|
||||
} catch (_) {}
|
||||
|
||||
if ((currentChainTip ?? 0) <= walletInfo.restoreHeight) {
|
||||
if ((currentChainTip ?? 0) < walletInfo.restoreHeight) {
|
||||
_setListeners(walletInfo.restoreHeight, chainTip: currentChainTip);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue