Skip to content

Commit 155e3a6

Browse files
author
Ludo Galabru
committed
fix: off by one issue
1 parent 11b9b6b commit 155e3a6

File tree

1 file changed

+1
-1
lines changed
  • components/chainhook-sdk/src/hord/db

1 file changed

+1
-1
lines changed

components/chainhook-sdk/src/hord/db/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@ pub async fn fetch_and_cache_blocks_in_hord_db(
777777
// processing.
778778

779779
// Should we start look for inscriptions data in blocks?
780-
if raw_block.height as u64 > ordinal_computing_height {
780+
if raw_block.height as u64 >= ordinal_computing_height {
781781
if cursor == 0 {
782782
cursor = raw_block.height;
783783
}

0 commit comments

Comments
 (0)