From ca57abb6c16d919b7fd497e4e96ebf57638c5ab9 Mon Sep 17 00:00:00 2001 From: CPerezz Date: Thu, 18 Dec 2025 10:04:58 +0100 Subject: [PATCH] Fix Reth shadowfork configuration by adding --chain parameter Add missing --chain=/network-config/genesis.json parameter to Reth configuration for devnet-2. This is critical for shadowfork networks where Reth needs to load the custom genesis specification. Without this parameter, Reth would not properly initialize with the shadowfork's custom genesis state and chain configuration. --- ansible/inventories/devnet-2/group_vars/reth.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible/inventories/devnet-2/group_vars/reth.yaml b/ansible/inventories/devnet-2/group_vars/reth.yaml index d1cf5e9..e9ba089 100644 --- a/ansible/inventories/devnet-2/group_vars/reth.yaml +++ b/ansible/inventories/devnet-2/group_vars/reth.yaml @@ -22,6 +22,7 @@ reth_container_volumes: - "{{ reth_auth_jwt_path }}:/execution-auth.jwt:ro" - "{{ eth_testnet_config_dir }}:/network-config:ro" reth_container_command_extra_args: + - --chain=/network-config/genesis.json - --trusted-peers={{ ethereum_el_bootnodes | join(',') }} - --http.api=trace,rpc,eth,net,debug,web3,admin - --full