From 420b0547094b8591bfab8360449b07ad5905f4c7 Mon Sep 17 00:00:00 2001 From: yorickdowne <71337066+yorickdowne@users.noreply.github.com> Date: Fri, 2 Aug 2024 23:54:46 +0000 Subject: [PATCH] Nethermind use default RPC namespaces (#1890) --- nethermind/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nethermind/docker-entrypoint.sh b/nethermind/docker-entrypoint.sh index d02ceefc..a8bf6533 100755 --- a/nethermind/docker-entrypoint.sh +++ b/nethermind/docker-entrypoint.sh @@ -53,7 +53,7 @@ if [[ "${NETWORK}" =~ ^https?:// ]]; then __network="--config none.cfg --Init.ChainSpecPath=/var/lib/nethermind/testnet/${config_dir}/chainspec.json --Discovery.Bootnodes=${bootnodes} \ --JsonRpc.EnabledModules=Eth,Subscribe,Trace,TxPool,Web3,Personal,Proof,Net,Parity,Health,Rpc,Debug,Admin --Pruning.Mode=None --Init.IsMining=false" else - __network="--config ${NETWORK} --JsonRpc.EnabledModules Web3,Eth,Subscribe,Net,Health,Parity,Proof,Trace,TxPool" + __network="--config ${NETWORK}" fi __memtotal=$(awk '/MemTotal/ {printf "%d", int($2/1024/1024)}' /proc/meminfo)