Commit e2c15288 authored by Barnabas Busa's avatar Barnabas Busa Committed by GitHub

fix: mixed up labels (#799)

parent 5b2d2342
......@@ -182,7 +182,7 @@ def get_config(
size=int(participant.el_volume_size)
if int(participant.el_volume_size) > 0
else constants.VOLUME_SIZE[launcher.network][
constants.EL_TYPE.besu + "_volume_size"
constants.EL_TYPE.erigon + "_volume_size"
],
)
......
......@@ -200,7 +200,7 @@ def get_config(
size=int(participant.el_volume_size)
if int(participant.el_volume_size) > 0
else constants.VOLUME_SIZE[launcher.network][
constants.EL_TYPE.besu + "_volume_size"
constants.EL_TYPE.ethereumjs + "_volume_size"
],
)
env_vars = participant.el_extra_env_vars
......
......@@ -296,7 +296,7 @@ def get_config(
size=int(participant.el_volume_size)
if int(participant.el_volume_size) > 0
else constants.VOLUME_SIZE[launcher.network][
constants.EL_TYPE.besu + "_volume_size"
constants.EL_TYPE.geth + "_volume_size"
],
)
env_vars = participant.el_extra_env_vars
......
......@@ -208,7 +208,7 @@ def get_config(
size=int(participant.el_volume_size)
if int(participant.el_volume_size) > 0
else constants.VOLUME_SIZE[launcher.network][
constants.EL_TYPE.besu + "_volume_size"
constants.EL_TYPE.nethermind + "_volume_size"
],
)
env_vars = participant.el_extra_env_vars
......
......@@ -193,7 +193,7 @@ def get_config(
size=int(participant.el_volume_size)
if int(participant.el_volume_size) > 0
else constants.VOLUME_SIZE[launcher.network][
constants.EL_TYPE.besu + "_volume_size"
constants.EL_TYPE.nimbus + "_volume_size"
],
)
env_vars = participant.el_extra_env_vars
......
......@@ -204,7 +204,7 @@ def get_config(
size=int(participant.el_volume_size)
if int(participant.el_volume_size) > 0
else constants.VOLUME_SIZE[launcher.network][
constants.EL_TYPE.besu + "_volume_size"
constants.EL_TYPE.reth + "_volume_size"
],
)
......@@ -224,7 +224,7 @@ def get_config(
"private_ip_address_placeholder": constants.PRIVATE_IP_ADDRESS_PLACEHOLDER,
"env_vars": env_vars,
"labels": shared_utils.label_maker(
client=constants.EL_TYPE.besu,
client=constants.EL_TYPE.reth,
client_type=constants.CLIENT_TYPES.el,
image=participant.el_image,
connected_client=cl_client_name,
......
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