Commit 58b41687 authored by Gyanendra Mishra's avatar Gyanendra Mishra

command overrides work

parent e047faf2
...@@ -26,7 +26,7 @@ def main(input_args): ...@@ -26,7 +26,7 @@ def main(input_args):
all_el_client_contexts = [] all_el_client_contexts = []
all_cl_client_contexts = [] all_cl_client_contexts = []
for participant in participants: for participant in all_participants:
all_el_client_contexts.append(participant.el_client_context) all_el_client_contexts.append(participant.el_client_context)
all_cl_client_contexts.append(participant.cl_client_context) all_cl_client_contexts.append(participant.cl_client_context)
......
...@@ -19,10 +19,12 @@ def get_service_config(prefunded_addresses, el_client_context): ...@@ -19,10 +19,12 @@ def get_service_config(prefunded_addresses, el_client_context):
return struct( return struct(
container_image_name = IMAGE_NAME, container_image_name = IMAGE_NAME,
cmd_args = [ cmd_args = [
"http://{0}:{1}".fomrat(el_client_context.ip_addr, el_client_context.rpc_port_num), "./tx-fuzz.bin",
"http://{0}:{1}".format(el_client_context.ip_addr, el_client_context.rpc_port_num),
"spam", "spam",
comma_separated_private_keys, comma_separated_private_keys,
comma_separated_addresses comma_separated_addresses
] ],
used_ports = {}
) )
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