diff --git a/src/el/op-reth/op_reth_builder_launcher.star b/src/el/op-reth/op_reth_builder_launcher.star index 8a2f5046..3cd906f5 100644 --- a/src/el/op-reth/op_reth_builder_launcher.star +++ b/src/el/op-reth/op_reth_builder_launcher.star @@ -175,11 +175,11 @@ def get_config( "--http.corsdomain=*", # 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! - "--http.api=admin,net,eth,web3,debug,trace,miner", + "--http.api=admin,net,eth,web3,debug,trace", "--ws", "--ws.addr=0.0.0.0", "--ws.port={0}".format(WS_PORT_NUM), - "--ws.api=net,eth,miner", + "--ws.api=net,eth", "--ws.origins=*", "--nat=extip:" + ethereum_package_constants.PRIVATE_IP_ADDRESS_PLACEHOLDER, "--authrpc.port={0}".format(ENGINE_RPC_PORT_NUM), diff --git a/src/el/op-reth/op_reth_launcher.star b/src/el/op-reth/op_reth_launcher.star index 70211929..386d7d8f 100644 --- a/src/el/op-reth/op_reth_launcher.star +++ b/src/el/op-reth/op_reth_launcher.star @@ -176,11 +176,11 @@ def get_config( "--http.corsdomain=*", # 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! - "--http.api=admin,net,eth,web3,debug,trace,miner", + "--http.api=admin,net,eth,web3,debug,trace", "--ws", "--ws.addr=0.0.0.0", "--ws.port={0}".format(WS_PORT_NUM), - "--ws.api=net,eth,miner", + "--ws.api=net,eth", "--ws.origins=*", "--nat=extip:" + ethereum_package_constants.PRIVATE_IP_ADDRESS_PLACEHOLDER, "--authrpc.port={0}".format(ENGINE_RPC_PORT_NUM),