-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Extract block_reverter into separate crate #1632
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wonder how the reverter will fit into the node framework (it doesn't look like a component), but if it does, I'm all for it.
yeah,.. it's more like a tool..but it lives in |
3483419
to
e5840be
Compare
🤖 I have created a release *beep* *boop* --- ## [23.1.0](core-v23.0.0...core-v23.1.0) (2024-04-22) ### Features * **en:** Add boxed L2 client and use it in DI ([#1627](#1627)) ([9948187](9948187)) * Extract block_reverter into separate crate ([#1632](#1632)) ([8ab2488](8ab2488)) * Extract house keeper into separate crate ([#1685](#1685)) ([f6f49b7](f6f49b7)) * remove enum index migration ([#1734](#1734)) ([13c0f52](13c0f52)) * **state-keeper:** miniblock max payload size (BFT-417) ([#1284](#1284)) ([a3c8e81](a3c8e81)) ### Bug Fixes * **en:** Fix miscellaneous snapshot recovery nits ([#1701](#1701)) ([13bfecc](13bfecc)) * ensure two connections for both executor and async catchup ([#1755](#1755)) ([3b14a9f](3b14a9f)) * made consensus store certificates asynchronously from statekeeper ([#1711](#1711)) ([d1032ab](d1032ab)) * **merkle_tree:** don't panic in `BlockOutputWithProofs::verify_proofs` ([#1717](#1717)) ([a44fac9](a44fac9)) * **types:** fix LegacyCall type ([#1739](#1739)) ([712919f](712919f)) ### Performance Improvements * **en:** Monitor recovery latency by stage ([#1725](#1725)) ([d7efdd5](d7efdd5)) ### Reverts * **env:** Remove `ZKSYNC_HOME` env var from server ([#1713](#1713)) ([aed23e1](aed23e1)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: perekopskiy <[email protected]> Co-authored-by: perekopskiy <[email protected]>
What ❔
Extract
zksync_core::block_reverter
to separate the crate in thenode
folderWhy ❔
Part of the to "modularize the codebase" process, required for legolizer and publishing on crates.io.
Checklist
zk fmt
andzk lint
.zk spellcheck
.zk linkcheck
.