diff --git a/clients/reth/mapper.jq b/clients/reth/mapper.jq index c033bd22ce..858223a2af 100644 --- a/clients/reth/mapper.jq +++ b/clients/reth/mapper.jq @@ -50,7 +50,10 @@ def to_bool: "muirGlacierBlock": env.HIVE_FORK_MUIR_GLACIER|to_int, "berlinBlock": env.HIVE_FORK_BERLIN|to_int, "londonBlock": env.HIVE_FORK_LONDON|to_int, + "arrowGlacierBlock": env.HIVE_FORK_ARROW_GLACIER|to_int, + "grayGlacierBlock": env.HIVE_FORK_GRAY_GLACIER|to_int, "terminalTotalDifficulty": env.HIVE_TERMINAL_TOTAL_DIFFICULTY|to_int, + "terminalTotalDifficultyPassed": env.HIVE_TERMINAL_TOTAL_DIFFICULTY_PASSED|to_bool, "shanghaiTime": env.HIVE_SHANGHAI_TIMESTAMP|to_int, }|remove_empty } diff --git a/clients/reth/reth.sh b/clients/reth/reth.sh index 77b584a82f..21c3e9cda9 100644 --- a/clients/reth/reth.sh +++ b/clients/reth/reth.sh @@ -82,7 +82,7 @@ set +ex echo "Loading initial blockchain..." if [ -f /chain.rlp ]; then echo "Loading initial blockchain..." - $reth import $FLAGS /chain.rlp + RUST_LOG=info $reth import $FLAGS /chain.rlp else echo "Warning: chain.rlp not found." fi @@ -152,4 +152,4 @@ FLAGS="$FLAGS --nat none" # Launch the main client. echo "Running reth with flags: $FLAGS" -$reth node $FLAGS +RUST_LOG=info $reth node $FLAGS