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
58222700
Unverified
Commit
58222700
authored
Nov 24, 2022
by
Gyanendra Mishra
Committed by
GitHub
Nov 24, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into gyani/render
parents
c8b7b242
7311d884
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
8 deletions
+2
-8
changelog.md
docs/changelog.md
+1
-0
prelaunch_data_generator_launcher.star
...generator_launcher/prelaunch_data_generator_launcher.star
+0
-2
testnet_verifier.star
src/testnet_verifier/testnet_verifier.star
+0
-4
transaction_spammer.star
src/transaction_spammer/transaction_spammer.star
+1
-2
No files found.
docs/changelog.md
View file @
58222700
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
-
Renamed
`num_validators_per_keynode`
to
`num_validator_keys_per_node`
-
Renamed
`num_validators_per_keynode`
to
`num_validator_keys_per_node`
-
Moved away from
`load`
infavor of
`import_module`
-
Moved away from
`load`
infavor of
`import_module`
-
Moved away from
`store_files_from_service`
to
`store_service_files`
-
Moved away from
`store_files_from_service`
to
`store_service_files`
-
Removed empty
`ports`
from a few service configs as passing it is now optional
# 0.0.1
# 0.0.1
...
...
src/participant_network/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star
View file @
58222700
...
@@ -26,8 +26,6 @@ def get_config(
...
@@ -26,8 +26,6 @@ def get_config(
files_artifact_mountpoints,
files_artifact_mountpoints,
):
):
return struct(
return struct(
# TODO remove this when ports is optional to pass
ports = {},
image = IMAGE,
image = IMAGE,
entrypoint = ENTRYPOINT_ARGS,
entrypoint = ENTRYPOINT_ARGS,
files = files_artifact_mountpoints,
files = files_artifact_mountpoints,
...
...
src/testnet_verifier/testnet_verifier.star
View file @
58222700
...
@@ -54,8 +54,6 @@ def get_asynchronous_verification_config(params, el_client_contexts, cl_client_c
...
@@ -54,8 +54,6 @@ def get_asynchronous_verification_config(params, el_client_contexts, cl_client_c
return struct(
return struct(
image = IMAGE_NAME,
image = IMAGE_NAME,
cmd = commands,
cmd = commands,
# TODO remove this when ports is optional in add_service
ports = {},
)
)
...
@@ -63,6 +61,4 @@ def get_synchronous_verification_config():
...
@@ -63,6 +61,4 @@ def get_synchronous_verification_config():
return struct(
return struct(
image = IMAGE_NAME,
image = IMAGE_NAME,
entrypoint = SYNCHRONOUS_ENTRYPOINT_ARGS,
entrypoint = SYNCHRONOUS_ENTRYPOINT_ARGS,
# TODO remove this when ports is optional in add_service
ports = {},
)
)
src/transaction_spammer/transaction_spammer.star
View file @
58222700
...
@@ -23,7 +23,6 @@ def get_config(prefunded_addresses, el_client_context):
...
@@ -23,7 +23,6 @@ def get_config(prefunded_addresses, el_client_context):
"spam",
"spam",
comma_separated_private_keys,
comma_separated_private_keys,
comma_separated_addresses
comma_separated_addresses
],
]
ports = {}
)
)
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