fix(wallet): reset last_synced_block on storage restore so notes re-scan from genesis

This commit is contained in:
moudyellaz 2026-06-18 13:33:09 +02:00
parent 4af5651c9e
commit 87d6869e15

View File

@ -94,6 +94,7 @@ impl Storage {
self.key_chain = UserKeyChain::new_with_accounts(public_tree, private_tree);
self.labels = BTreeMap::new();
self.last_synced_block = 0;
Ok(())
}