Commit 0e7bc98d authored by Victor Colombo's avatar Victor Colombo Committed by GitHub

Merge pull request #43 from kurtosis-tech/vcolombo/two-parameters

Fix bug with `get_enode_for_node` being assigned to two parameters
parents ce8a6285 786370ee
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
### Fixes ### Fixes
- Fix bug with input parsing of participants - Fix bug with input parsing of participants
- Fix bug with `get_enode_for_node` being assigned to two parameters
### Changes ### Changes
- Updated `run(input_args)` to `run(args)` - Updated `run(input_args)` to `run(args)`
......
...@@ -60,7 +60,7 @@ def launch( ...@@ -60,7 +60,7 @@ def launch(
service = add_service(service_id, config) service = add_service(service_id, config)
enode, enr = el_admin_node_info.get_enode_for_node(service_id, RPC_PORT_ID) enode = el_admin_node_info.get_enode_for_node(service_id, RPC_PORT_ID)
return el_client_context.new_el_client_context( return el_client_context.new_el_client_context(
"besu", "besu",
......
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