Extend nitro-testnode to run consensus and execution separately#177
Draft
Extend nitro-testnode to run consensus and execution separately#177
Conversation
7192f2a to
52beb21
Compare
Signed-off-by: Igor Braga <5835477+bragaigor@users.noreply.github.com>
52beb21 to
3b1d3b7
Compare
bragaigor
commented
Feb 19, 2026
Comment on lines
+227
to
+248
| regular-follower-node: | ||
| pid: host # allow debugging | ||
| image: nitro-node-dev-testnode | ||
| entrypoint: /usr/local/bin/nitro | ||
| ports: | ||
| - "127.0.0.1:7447:8547" | ||
| - "127.0.0.1:7548:8548" | ||
| volumes: | ||
| - "seqdata:/home/user/.arbitrum/local/nitro" | ||
| - "l1keystore:/home/user/l1keystore" | ||
| - "config:/config" | ||
| - "tokenbridge-data:/tokenbridge-data" | ||
| command: | ||
| - --conf.file=/config/consensus_config.json | ||
| - --http.api=net,web3,eth,txpool,debug,timeboost,auctioneer | ||
| - --node.seq-coordinator.my-url=http://sequencer:8547 | ||
| - --http.api=net,web3,eth,txpool,debug,timeboost,auctioneer | ||
| - --graphql.enable | ||
| - --graphql.vhosts=* | ||
| - --graphql.corsdomain=* | ||
| depends_on: | ||
| - geth |
Author
There was a problem hiding this comment.
we don't really need this but it was very helpful in debugging. I've added it behind --follower-node flag, but let me know if you prefer to remove it
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.
Extend nitro-testnode to run consensus and execution in different processes
relates to NIT-4241
fixes NIT-4202
Pulled by OffchainLabs/nitro#4386