Skip to content

Commit

Permalink
Add timeboost rpc to sequencer command line
Browse files Browse the repository at this point in the history
Even if using an nitro image that doesn't have timeboost enabled yet,
nitro will still start after logging an error message.
Unavailable modules in HTTP API list     unavailable=[timeboost] available="[admin debug web3 eth txpool personal net arb arbdebug arbtrace]"
  • Loading branch information
Tristan-Wilson committed Oct 25, 2024
1 parent bad7cdc commit f9a6efa
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,19 @@ services:
- "l1keystore:/home/user/l1keystore"
- "config:/config"
- "tokenbridge-data:/tokenbridge-data"
command: --conf.file /config/sequencer_config.json --node.feed.output.enable --node.feed.output.port 9642 --http.api net,web3,eth,txpool,debug --node.seq-coordinator.my-url ws://sequencer:8548 --graphql.enable --graphql.vhosts * --graphql.corsdomain * --auth.addr 0.0.0.0 --auth.api auctioneer,eth,validation --auth.jwtsecret=/config/jwt.hex --auth.origins *
command:
- --conf.file=/config/sequencer_config.json
- --node.feed.output.enable
- --node.feed.output.port=9642
- --http.api=net,web3,eth,txpool,debug,timeboost
- --node.seq-coordinator.my-url=ws://sequencer:8548
- --graphql.enable
- --graphql.vhosts=*
- --graphql.corsdomain=*
- --auth.addr=0.0.0.0
- --auth.api=auctioneer,eth,validation
- --auth.jwtsecret=/config/jwt.hex
- --auth.origins=*
depends_on:
- geth

Expand Down

0 comments on commit f9a6efa

Please sign in to comment.