Skip to content

Commit

Permalink
accessors: fix bugfix from the previous merge
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 28, 2023
1 parent 160d351 commit 0d5a826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/accessors/merge_reveal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ impl MergeReveal for TransitionBundle {
.known_transitions
.extend(other.known_transitions)
.is_err() ||
self.input_map.len() < self.known_transitions.len()
self.input_map.len() > self.known_transitions.len()
{
return Err(MergeRevealError::ExcessiveTransitions);
}
Expand Down

0 comments on commit 0d5a826

Please sign in to comment.