From 138377fc62a2cbe2d20aeb3784df690547a185fd Mon Sep 17 00:00:00 2001 From: ezokoze Date: Fri, 16 May 2025 14:46:04 +0700 Subject: [PATCH] Update README.md fix missing argument to keep same genesis files between the init-state and the node running --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e9e08e9e..2351d8850 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,6 @@ $ reth init-state --without-evm --chain testnet --header ~/hl-testnet-genesis/21 ~/hl-testnet-genesis/21304281.jsonl --total-difficulty 0 # Run node -$ reth node --http --http.addr 0.0.0.0 --http.api eth,ots,net,web3 \ +$ reth node --chain testnet --http --http.addr 0.0.0.0 --http.api eth,ots,net,web3 \ --ws --ws.addr 0.0.0.0 --ws.origins '*' --ws.api eth,ots,net,web3 --ingest-dir ~/evm-blocks --ws.port 8546 ```