From 4fe9d61959744efa822009e40e68c5cda25a02a4 Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Thu, 31 Aug 2023 15:07:07 -0600 Subject: [PATCH] zcash_client_sqlite: Fix a comment on range inclusion. Co-authored-by: str4d --- zcash_client_sqlite/src/wallet/scanning.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zcash_client_sqlite/src/wallet/scanning.rs b/zcash_client_sqlite/src/wallet/scanning.rs index 5b24cf3dc..a857d82da 100644 --- a/zcash_client_sqlite/src/wallet/scanning.rs +++ b/zcash_client_sqlite/src/wallet/scanning.rs @@ -453,7 +453,7 @@ pub(crate) fn replace_queue_entries( "SELECT block_range_start, block_range_end, priority FROM scan_queue WHERE ( - -- the start is contained within the range + -- the start is contained within or adjacent to the range :start >= block_range_start AND :start <= block_range_end )