From d42810fd16cad3ef252130ef717066067acea736 Mon Sep 17 00:00:00 2001 From: Ben Adams Date: Fri, 27 Sep 2024 17:59:59 +0100 Subject: [PATCH 1/2] Allow execution nodes to act as peers for other nodes (#330) --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 9068905..2f29bc7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,6 +7,8 @@ services: - "8545:8545" # RPC - "8546:8546" # websocket - "7301:6060" # metrics + - "30303:30303" # P2P TCP + - "30303:30303/udp" # P2P UDP command: [ "bash", "./execution-entrypoint" ] volumes: - ${HOST_DATA_DIR}:/data From c41489f2c468328cbc94a57d38625c370e9e65a8 Mon Sep 17 00:00:00 2001 From: Yubin Date: Mon, 30 Sep 2024 23:28:58 +0800 Subject: [PATCH 2/2] Enable discovery for reth node (#314) --- reth/reth-entrypoint | 1 - 1 file changed, 1 deletion(-) diff --git a/reth/reth-entrypoint b/reth/reth-entrypoint index 9124860..ca546df 100755 --- a/reth/reth-entrypoint +++ b/reth/reth-entrypoint @@ -34,6 +34,5 @@ exec ./op-reth node \ --authrpc.jwtsecret="$OP_NODE_L2_ENGINE_AUTH" \ --metrics=0.0.0.0:"$METRICS_PORT" \ --chain "$RETH_CHAIN" \ - --disable-discovery \ --rollup.sequencer-http=$RETH_SEQUENCER_HTTP \ --rollup.disable-tx-pool-gossip