Commit f9d0b501 authored by Parithosh Jayanthi's avatar Parithosh Jayanthi Committed by GitHub

fix: Enable txpool on geth,besu and nethermind (#868)

parent d3a00249
...@@ -205,11 +205,11 @@ def get_config( ...@@ -205,11 +205,11 @@ def get_config(
"--http.corsdomain=*", "--http.corsdomain=*",
# WARNING: The admin info endpoint is enabled so that we can easily get ENR/enode, which means # WARNING: The admin info endpoint is enabled so that we can easily get ENR/enode, which means
# that users should NOT store private information in these Kurtosis nodes! # that users should NOT store private information in these Kurtosis nodes!
"--http.api=admin,engine,net,eth,web3,debug", "--http.api=admin,engine,net,eth,web3,debug,txpool",
"--ws", "--ws",
"--ws.addr=0.0.0.0", "--ws.addr=0.0.0.0",
"--ws.port={0}".format(WS_PORT_NUM), "--ws.port={0}".format(WS_PORT_NUM),
"--ws.api=admin,engine,net,eth,web3,debug", "--ws.api=admin,engine,net,eth,web3,debug,txpool",
"--ws.origins=*", "--ws.origins=*",
"--allow-insecure-unlock", "--allow-insecure-unlock",
"--nat=extip:" + port_publisher.nat_exit_ip, "--nat=extip:" + port_publisher.nat_exit_ip,
......
...@@ -135,7 +135,7 @@ def get_config( ...@@ -135,7 +135,7 @@ def get_config(
"--datadir=" + EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER, "--datadir=" + EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER,
"--Init.WebSocketsEnabled=true", "--Init.WebSocketsEnabled=true",
"--JsonRpc.Enabled=true", "--JsonRpc.Enabled=true",
"--JsonRpc.EnabledModules=net,eth,consensus,subscribe,web3,admin,debug", "--JsonRpc.EnabledModules=net,eth,consensus,subscribe,web3,admin,debug,txpool",
"--JsonRpc.Host=0.0.0.0", "--JsonRpc.Host=0.0.0.0",
"--JsonRpc.Port={0}".format(RPC_PORT_NUM), "--JsonRpc.Port={0}".format(RPC_PORT_NUM),
"--JsonRpc.WebSocketsPort={0}".format(WS_PORT_NUM), "--JsonRpc.WebSocketsPort={0}".format(WS_PORT_NUM),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment