Skip to content

Commit f9d0b50

Browse files
authored
fix: Enable txpool on geth,besu and nethermind (ethereum#868)
1 parent d3a0024 commit f9d0b50

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/el/geth/geth_launcher.star

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,11 +205,11 @@ def get_config(
205205
"--http.corsdomain=*",
206206
# WARNING: The admin info endpoint is enabled so that we can easily get ENR/enode, which means
207207
# that users should NOT store private information in these Kurtosis nodes!
208-
"--http.api=admin,engine,net,eth,web3,debug",
208+
"--http.api=admin,engine,net,eth,web3,debug,txpool",
209209
"--ws",
210210
"--ws.addr=0.0.0.0",
211211
"--ws.port={0}".format(WS_PORT_NUM),
212-
"--ws.api=admin,engine,net,eth,web3,debug",
212+
"--ws.api=admin,engine,net,eth,web3,debug,txpool",
213213
"--ws.origins=*",
214214
"--allow-insecure-unlock",
215215
"--nat=extip:" + port_publisher.nat_exit_ip,

src/el/nethermind/nethermind_launcher.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def get_config(
135135
"--datadir=" + EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER,
136136
"--Init.WebSocketsEnabled=true",
137137
"--JsonRpc.Enabled=true",
138-
"--JsonRpc.EnabledModules=net,eth,consensus,subscribe,web3,admin,debug",
138+
"--JsonRpc.EnabledModules=net,eth,consensus,subscribe,web3,admin,debug,txpool",
139139
"--JsonRpc.Host=0.0.0.0",
140140
"--JsonRpc.Port={0}".format(RPC_PORT_NUM),
141141
"--JsonRpc.WebSocketsPort={0}".format(WS_PORT_NUM),

0 commit comments

Comments
 (0)