Fix --l2-anytrust: bump pinned nitro image and use the renamed AnyTrust binaries - #209
Open
pmikolajczyk41 wants to merge 3 commits into
Open
Fix --l2-anytrust: bump pinned nitro image and use the renamed AnyTrust binaries#209pmikolajczyk41 wants to merge 3 commits into
--l2-anytrust: bump pinned nitro image and use the renamed AnyTrust binaries#209pmikolajczyk41 wants to merge 3 commits 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.
Problem
./test-node.bash --l2-anytrusthas been broken: all three AnyTrust containersexit(1)at startup.Cause
a47a079e7 [config] Rename DAS to AnyTrust (#4142)(nitro, 2025-12-18) did two things at once, and the testnode only followed one:parent-chainconfig.ts, Dec 2025)daserver→anytrustserver,datool→anytrusttooldaserverNITRO_NODE_VERSIONpinv3.9.6-91bf578(pre-rename)Half-migrated: it generates the new config but pins an image too old to parse it, while its entrypoints name binaries too old for any current image. Broken in both directions. The observed failure:
Changes
test-node.bash— pinoffchainlabs/nitro-node:v3.11.3-beb2108(rename landed in v3.11.0; verified this tag containsanytrustserver/anytrusttool)docker-compose.yaml— 4 entrypoints to the new binary namestest-node.bash— inlinedatool dumpkeyset→anytrusttoolscripts/config.ts— node DA confignode.data-availability→node.da.anytrust(separate commit)The compose service is still named
datool, so the 9docker compose run … datoolcall sites are untouched.config.ts:550,579are deliberately unchanged — those are the server config, where top-leveldata-availabilityis still correct.Verified
--init-force --l2-anytrust: all three containers Up;Added AnyTrust writer; L2 txstatus: 1; 118 payloads stored in each of committee-a, committee-b and the mirror; zero DEPRECATED lines.Note for reviewers
This bumps the default nitro image by two minor versions, so it affects every testnode user, not just AnyTrust.
closes NIT-5547