zcash_client_sqlite: Mark existing blocks scanned in `shardtree` migration

The `shardtree` migration is applied to a database state that was
created via linear scanning, so we have complete wallet information for
those blocks.
This commit is contained in:
Jack Grigg 2023-07-21 21:01:03 +00:00
parent 97a3f818ec
commit ed06a37b09
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ impl RusqliteMigration for Migration {
transaction,
Some(ScanRange::from_parts(
start..chain_end,
ScanPriority::Historic,
ScanPriority::Scanned,
))
.iter(),
)?;