Skip to content

Commit

Permalink
Keep inscriptions with unrecognized even fields unbound after jubilee (
Browse files Browse the repository at this point in the history
  • Loading branch information
gmart7t2 committed Jan 3, 2024
1 parent 43df02e commit 66970e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index/updater/inscription_updater.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ impl<'a, 'db, 'tx> InscriptionUpdater<'a, 'db, 'tx> {
None
};

let unbound = current_input_value == 0 || curse == Some(Curse::UnrecognizedEvenField);
let unbound = current_input_value == 0
|| curse == Some(Curse::UnrecognizedEvenField)
|| inscription.payload.unrecognized_even_field;

let offset = inscription
.payload
Expand Down

0 comments on commit 66970e6

Please sign in to comment.