From f9a6efa72d232eb37e7630e3666ba8174d4485bd Mon Sep 17 00:00:00 2001 From: Tristan Wilson Date: Fri, 25 Oct 2024 12:26:58 +0200 Subject: [PATCH] Add timeboost rpc to sequencer command line 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]" --- docker-compose.yaml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 1702cfbe..5665fec6 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -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