From 47084b02b9d4edf59f71666c78e2753ac2fea04c Mon Sep 17 00:00:00 2001 From: Voss Date: Fri, 8 Dec 2023 21:14:51 -0600 Subject: [PATCH] seitch to WS engine communication update sequencer --- docker-compose.yml | 4 ++-- op-geth/entrypoint.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index b212cef..3e5d0a9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,9 +11,9 @@ services: environment: - EXTRA_FLAGS - P2P_PORT=33142 - - SYNCMODE=snap + - SYNCMODE=full - "HISTORICAL_RPC_URL=http://op-l2geth.dappnode:8545" - - "SEQUENCER_HTTP_URL=https://bedrock-beta-1-sequencer.optimism.io" + - "SEQUENCER_HTTP_URL=https://mainnet-sequencer.optimism.io/" image: "geth.op-geth.dnp.dappnode.eth:0.1.0" ports: - "33142:33142/tcp" diff --git a/op-geth/entrypoint.sh b/op-geth/entrypoint.sh index ed45f74..5c3f5ff 100755 --- a/op-geth/entrypoint.sh +++ b/op-geth/entrypoint.sh @@ -61,7 +61,7 @@ fi echo "[INFO - entrypoint] Starting Geth" exec geth --datadir $DATA_DIR \ --rollup.sequencerhttp $SEQUENCER_HTTP_URL \ - --rollup.disabletxpoolgossip \ + --rollup.disabletxpoolgossip true \ --ws \ --ws.port 8546 \ --ws.addr 0.0.0.0 \ @@ -79,5 +79,5 @@ exec geth --datadir $DATA_DIR \ --nodiscover \ --maxpeers 0 \ --syncmode full \ - --networkid=10 \ + --networkid 10 \ ${EXTRA_FLAGS}