Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
ab2b000d
Commit
ab2b000d
authored
Nov 01, 2022
by
Gyanendra Mishra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup
parent
af16b64c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
12 deletions
+4
-12
participant_network.star
src/participant_network/participant_network.star
+4
-10
shared_utils.star
src/shared_utils/shared_utils.star
+0
-2
No files found.
src/participant_network/participant_network.star
View file @
ab2b000d
...
...
@@ -12,10 +12,8 @@ def launch_participant_network(network_params):
network_params.num_validator_keys_per_node
)
# 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)))
print(json.indent(json.encode(keystore_result)))
genesis_timestamp = time.now().unix
...
...
@@ -29,11 +27,7 @@ def launch_participant_network(network_params):
)
# 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(json.indent(json.encode(el_genesis_data)))
print("Generating CL data")
genesis_generation_config_yml_template = read_file("github.com/kurtosis-tech/eth2-module/static_files/genesis-generation-config/cl/config.yaml.tmpl")
...
...
@@ -52,4 +46,4 @@ def launch_participant_network(network_params):
)
print(
"Success " + str(cl_data
))
print(
json.indent(json.encode(cl_data)
))
src/shared_utils/shared_utils.star
View file @
ab2b000d
...
...
@@ -3,8 +3,6 @@ def new_template_and_data(template, template_data_json):
def path_join(*args):
joined_path = "/".join(args)
# TODO remove this
print(joined_path)
return joined_path.replace("//", "/")
def path_base(path):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment