Skip to content

Commit

Permalink
fix(proof-data-handler): Check commitments only for post-boojum (agai…
Browse files Browse the repository at this point in the history
…n) (#502)

## What ❔

Fix bug

## Why ❔

Fix bug

## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [x] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
- [x] Code has been formatted via `zk fmt` and `zk lint`.
  • Loading branch information
perekopskiy authored Nov 16, 2023
1 parent 87bd226 commit ff636ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ impl RequestProcessor {
.protocol_version
.map(|v| v.is_pre_boojum())
.unwrap_or(true);
if is_pre_boojum {
if !is_pre_boojum {
let events_queue_state = l1_batch
.metadata
.events_queue_commitment
Expand Down

0 comments on commit ff636ca

Please sign in to comment.