mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-04-02 20:49:10 +00:00
check if still processing utxos before updating sync status [skip ci]
This commit is contained in:
parent
ea929982c3
commit
efa8324b53
1 changed files with 4 additions and 4 deletions
|
@ -319,10 +319,10 @@ abstract class LitecoinWalletBase extends ElectrumWallet with Store {
|
|||
|
||||
// prevent unnecessary reaction triggers:
|
||||
if (syncStatus is! SyncedSyncStatus) {
|
||||
// mwebd is synced, but we could still be processing incoming utxos (should only take a few seconds)
|
||||
// so we wait a few seconds before marking the wallet as synced
|
||||
await Future.delayed(const Duration(seconds: 3));
|
||||
syncStatus = SyncedSyncStatus();
|
||||
// mwebd is synced, but we could still be processing incoming utxos:
|
||||
if (!processingUtxos) {
|
||||
syncStatus = SyncedSyncStatus();
|
||||
}
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue