Commit 953741d8 authored by Barnabas Busa's avatar Barnabas Busa Committed by GitHub

fix: set the correct default vc image (#544)

parent 58c46845
...@@ -404,7 +404,7 @@ def parse_network_params(input_args): ...@@ -404,7 +404,7 @@ def parse_network_params(input_args):
vc_image = participant["vc_image"] vc_image = participant["vc_image"]
if vc_image == "": if vc_image == "":
if cl_image == "": if cl_image == "" or vc_type != cl_type:
# If the validator client image is also empty, default to the image for the chosen CL client # If the validator client image is also empty, default to the image for the chosen CL client
default_image = DEFAULT_VC_IMAGES.get(vc_type, "") default_image = DEFAULT_VC_IMAGES.get(vc_type, "")
else: else:
......
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