Commit af16b64c authored by Gyanendra Mishra's avatar Gyanendra Mishra

better

parent fa53c6c1
......@@ -3,9 +3,8 @@ load("github.com/kurtosis-tech/eth2-module/src/participant_network/participant_n
def main():
print("This should work if CI is running correctly")
network_params = new_network_params()
print("Launch participant network")
print("Launching participant network")
launch_participant_network(network_params)
def new_network_params():
......
......@@ -12,7 +12,10 @@ def launch_participant_network(network_params):
network_params.num_validator_keys_per_node
)
print("Success " + str(keystore_result))
# TODO Remove this later
print("CL Validator Key Store Result")
for key in dir(keystore_result):
print("{0} -> {1}".format(key, getattr(keystore_result, key)))
genesis_timestamp = time.now().unix
......@@ -25,7 +28,11 @@ def launch_participant_network(network_params):
network_params.deposit_contract_address
)
print("Success " + str(el_genesis_data))
# TODO Remove this later
print("EL Generation Result")
for key in dir(el_genesis_data):
print("{0} -> {1}".format(key, getattr(el_genesis_data, key)))
print("Generating CL data")
......
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