Commit 05240578 authored by Gyanendra Mishra's avatar Gyanendra Mishra

ERIGON wroks

parent fcdc0291
...@@ -32,8 +32,9 @@ This is the Startosis version of the popular [eth2-merge-kurtosis-module](https: ...@@ -32,8 +32,9 @@ This is the Startosis version of the popular [eth2-merge-kurtosis-module](https:
- [ ] besu - [ ] besu
- [x] facts and waits + private_ip_address_placeholder - [x] facts and waits + private_ip_address_placeholder
- [x] framework - [x] framework
- [ ] erigon - [ ] facts could use more waiting
- [ ] facts and waits + private_ip_address_placeholder - [x] erigon
- [x] facts and waits + private_ip_address_placeholder
- [x] framework - [x] framework
- [x] geth DEMO - [x] geth DEMO
- [x] facts and waits + private_ip_address_placeholder - [x] facts and waits + private_ip_address_placeholder
......
...@@ -34,12 +34,12 @@ PRIVATE_IP_ADDRESS_PLACEHOLDER = "KURTOSIS_IP_ADDR_PLACEHOLDER" ...@@ -34,12 +34,12 @@ PRIVATE_IP_ADDRESS_PLACEHOLDER = "KURTOSIS_IP_ADDR_PLACEHOLDER"
TCP_PROTOCOL = "TCP" TCP_PROTOCOL = "TCP"
UDP_PROTOCOL = "UDP" UDP_PROTOCOL = "UDP"
## Engine port was removed from here
USED_PORTS = { USED_PORTS = {
RPC_PORT_ID: new_port_spec(RPC_PORT_NUM, TCP_PROTOCOL), RPC_PORT_ID: new_port_spec(RPC_PORT_NUM, TCP_PROTOCOL),
WS_PORT_ID: new_port_spec(WS_PORT_NUM, TCP_PROTOCOL), WS_PORT_ID: new_port_spec(WS_PORT_NUM, TCP_PROTOCOL),
TCP_DISCOVERY_PORT_ID: new_port_spec(DISCOVERY_PORT_NUM, TCP_PROTOCOL), TCP_DISCOVERY_PORT_ID: new_port_spec(DISCOVERY_PORT_NUM, TCP_PROTOCOL),
UDP_DISCOVERY_PORT_ID: new_port_spec(DISCOVERY_PORT_NUM, UDP_PROTOCOL), UDP_DISCOVERY_PORT_ID: new_port_spec(DISCOVERY_PORT_NUM, UDP_PROTOCOL),
ENGINE_RPC_PORT_ID: new_port_spec(ENGINE_RPC_PORT_NUM, TCP_PROTOCOL)
} }
ENTRYPOINT_ARGS = ["sh", "-c"] ENTRYPOINT_ARGS = ["sh", "-c"]
...@@ -109,7 +109,7 @@ def get_service_config(network_id, genesis_data, image, existing_el_clients, ver ...@@ -109,7 +109,7 @@ def get_service_config(network_id, genesis_data, image, existing_el_clients, ver
launch_node_cmd_args = [ launch_node_cmd_args = [
"erigon", "erigon",
"--verbosity=" + verbosity_level, "--log.console.verbosity=" + verbosity_level,
"--datadir=" + EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER, "--datadir=" + EXECUTION_DATA_DIRPATH_ON_CLIENT_CONTAINER,
"--networkid=" + network_id, "--networkid=" + network_id,
"--http", "--http",
...@@ -121,9 +121,8 @@ def get_service_config(network_id, genesis_data, image, existing_el_clients, ver ...@@ -121,9 +121,8 @@ def get_service_config(network_id, genesis_data, image, existing_el_clients, ver
"--ws", "--ws",
"--allow-insecure-unlock", "--allow-insecure-unlock",
"--nat=extip:" + PRIVATE_IP_ADDRESS_PLACEHOLDER, "--nat=extip:" + PRIVATE_IP_ADDRESS_PLACEHOLDER,
"--engine.port={0}".format(ENGINE_RPC_PORT_NUM),
"--engine.addr=0.0.0.0",
"--authrpc.jwtsecret={0}".format(jwt_secret_json_filepath_on_client), "--authrpc.jwtsecret={0}".format(jwt_secret_json_filepath_on_client),
## TODO engine port was removed from here
"--nodiscover", "--nodiscover",
"--staticpeers={0}".format(boot_node.enode), "--staticpeers={0}".format(boot_node.enode),
] ]
......
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