chore(bb): refresh pinned Chonk IVC inputs after protocol-circuit changes#23744
Draft
AztecBot wants to merge 1 commit into
Draft
chore(bb): refresh pinned Chonk IVC inputs after protocol-circuit changes#23744AztecBot wants to merge 1 commit into
AztecBot wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Trigger a refresh of the pinned Chonk IVC inputs (
barretenberg/cpp/scripts/chonk-inputs.hash) via theci-refresh-chonklabel. CI regenerates the inputs from the current protocol circuits, uploads the new tarball to S3, proves one small refreshed flow in C++ and bb.js, and pushes the updated hash back onto this branch.The only meaningful diff this PR introduces is the refreshed
chonk-inputs.hash(the trailing-newline tweak below is just a placeholder so the branch has a diff for CI to overwrite).Why — root cause of the nightly debug build failure
Nightly Debug Build run 26676520589 failed in
bbapi_tests ChonkPinnedIvcInputsTest.AllPinnedFlowswith:This is the databus consistency check in
barretenberg/cpp/src/barretenberg/chonk/chonk.cpp(process_public_inputs_and_consistency_checks). It is guarded byBB_ASSERT_DEBUG, which is compiled out of release/default builds — so only the nightly debug build exercises it, which is why regular PR CI was green. The{1,2}commitment is the BN254 generator, i.e. an empty databus column, while the proof carries real return data: the frozen pinned flow no longer reconstructs consistently against the current protocol circuits.Timeline:
209dde8e69a27c9f.example-app-ivc-inputs-out) to the frozen S3 tarball (barretenberg/cpp/chonk-pinned-flows).multi_call_entrypoint), feat(aztec-nr)!: remove set_sender_for_tags oracle, use builder pattern for sender override #23619 (removeset_sender_for_tagsoracle), plusconstants.nr/ address / public-key packing changes. The C++ chonk verifier itself was unchanged in this window.The pinned inputs are meant to track the protocol circuits; the breaking PRs should have carried
ci-refresh-chonkbut were merged via release CI where the debug assert is absent. This PR performs the missing refresh.Verification
CI's
ci-refresh-chonkpost-action regenerates the inputs and proves the smallest refreshed flow in both C++ and bb.js before committing the new hash, which directly reproduces and clears the failing assertion. After the bot pushes the refreshed hash, confirm the run is green before merging.Created by claudebox · group:
slackbot