Skip to content

Commit

Permalink
fix: patch db call
Browse files Browse the repository at this point in the history
  • Loading branch information
Ludo Galabru committed Jun 13, 2023
1 parent 5b3dbfa commit d385df2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/chainhook-sdk/src/hord/db/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -462,9 +462,9 @@ pub fn find_inscription_with_id(
let inscription_number: i64 = row.get(0).unwrap();
let ordinal_number: u64 = row.get(1).unwrap();
let inscription_offset_intra_output: u64 = row.get(3).unwrap();
let outpoint_to_watch: String = row.get(4).unwrap();
let _outpoint_to_watch: String = row.get(4).unwrap();
let (transaction_identifier, output_index) =
parse_outpoint_to_watch(&outpoint_to_watch);
parse_inscription_id(&inscription_id);
let (_, input_index) = parse_inscription_id(inscription_id);
let traversal = TraversalResult {
inscription_number,
Expand Down

0 comments on commit d385df2

Please sign in to comment.