Skip to content

Commit

Permalink
Merge branch 'main' into fvs-add-getproof-to-http-servers
Browse files Browse the repository at this point in the history
  • Loading branch information
montekki authored Nov 16, 2023
2 parents 92c9629 + ecd68ca commit 6aeef68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk/zksync-rs": "0.4.0",
"core": "18.0.2",
"core": "18.0.3",
"prover": "9.0.0"
}
7 changes: 7 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [18.0.3](https://github.com/matter-labs/zksync-era/compare/core-v18.0.2...core-v18.0.3) (2023-11-16)


### Bug Fixes

* **proof-data-handler:** Check commitments only for post-boojum (again) ([#502](https://github.com/matter-labs/zksync-era/issues/502)) ([ff636ca](https://github.com/matter-labs/zksync-era/commit/ff636ca9250d0276098e4b5b4a5f7a44a0717d06))

## [18.0.2](https://github.com/matter-labs/zksync-era/compare/core-v18.0.1...core-v18.0.2) (2023-11-16)


Expand Down
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 6aeef68

Please sign in to comment.