Skip to content

Commit 4b3a0da

Browse files
author
Ludo Galabru
committed
fix: related issue
1 parent adb1b98 commit 4b3a0da

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -494,13 +494,13 @@ pub fn find_all_inscriptions_in_block(
494494
let inscription_number: i64 = row.get(0).unwrap();
495495
let ordinal_number: u64 = row.get(1).unwrap();
496496
let block_height: u64 = row.get(2).unwrap();
497-
let (transaction_id, input_index) = {
497+
let (transaction_identifier, input_index) = {
498498
let inscription_id: String = row.get(3).unwrap();
499499
parse_inscription_id(&inscription_id)
500500
};
501501
let inscription_offset_intra_output: u64 = row.get(4).unwrap();
502502
let outpoint_to_watch: String = row.get(5).unwrap();
503-
let (transaction_identifier, output_index) = parse_outpoint_to_watch(&outpoint_to_watch);
503+
let (_, output_index) = parse_outpoint_to_watch(&outpoint_to_watch);
504504

505505
let traversal = TraversalResult {
506506
inscription_number,

0 commit comments

Comments
 (0)