Skip to content

Commit

Permalink
Parse trailing zeroes in inscription id index for parent
Browse files Browse the repository at this point in the history
  • Loading branch information
ordinally committed Sep 16, 2023
1 parent 80ef6e7 commit 70cc072
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/inscription.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,11 @@ impl Inscription {

if let Some(last) = index.last() {
if *last == 0 {
return None;
log::info!(
"parsing parent inscription index {:?} for {:?} with trailing zeroes",
index,
txid
);
}
}

Expand Down

1 comment on commit 70cc072

@veryordinally
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.