diff --git a/clients/reth/reth.sh b/clients/reth/reth.sh index 30028369ce..67d0ec00f7 100644 --- a/clients/reth/reth.sh +++ b/clients/reth/reth.sh @@ -133,6 +133,12 @@ set -ex FLAGS="$FLAGS --http --http.addr=0.0.0.0 --http.api=admin,debug,eth,net" #FLAGS="$FLAGS --ws" +# Enable continuous sync if mining is disabled +# TODO +# if [ "$HIVE_MINER" == "" ]; then +# FLAGS="$FLAGS --debug.continuous" +# fi + if [ "$HIVE_TERMINAL_TOTAL_DIFFICULTY" != "" ]; then JWT_SECRET="7365637265747365637265747365637265747365637265747365637265747365" echo -n $JWT_SECRET > /jwt.secret diff --git a/simulators/ethereum/rpc-compat/main.go b/simulators/ethereum/rpc-compat/main.go index 2618a8b7ab..0c687053cd 100644 --- a/simulators/ethereum/rpc-compat/main.go +++ b/simulators/ethereum/rpc-compat/main.go @@ -34,6 +34,7 @@ var ( "HIVE_FORK_ISTANBUL": "0", "HIVE_FORK_BERLIN": "0", "HIVE_FORK_LONDON": "0", + "HIVE_SHANGHAI_TIMESTAMP": "0", } files = map[string]string{ "genesis.json": "./tests/genesis.json",