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
b11926b6
Commit
b11926b6
authored
Nov 23, 2022
by
Gyanendra Mishra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup
parent
92467d11
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 @
b11926b6
...
...
@@ -7,6 +7,7 @@
-
Renamed
`num_validators_per_keynode`
to
`num_validator_keys_per_node`
-
Moved away from
`load`
infavor of
`import_module`
-
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
...
...
src/participant_network/prelaunch_data_generator/prelaunch_data_generator_launcher/prelaunch_data_generator_launcher.star
View file @
b11926b6
...
...
@@ -26,8 +26,6 @@ def get_config(
files_artifact_mountpoints,
):
return struct(
# TODO remove this when ports is optional to pass
ports = {},
image = IMAGE,
entrypoint = ENTRYPOINT_ARGS,
files = files_artifact_mountpoints,
...
...
src/testnet_verifier/testnet_verifier.star
View file @
b11926b6
...
...
@@ -54,8 +54,6 @@ def get_asynchronous_verification_config(params, el_client_contexts, cl_client_c
return struct(
image = IMAGE_NAME,
cmd = commands,
# TODO remove this when ports is optional in add_service
ports = {},
)
...
...
@@ -63,6 +61,4 @@ def get_synchronous_verification_config():
return struct(
image = IMAGE_NAME,
entrypoint = SYNCHRONOUS_ENTRYPOINT_ARGS,
# TODO remove this when ports is optional in add_service
ports = {},
)
src/transaction_spammer/transaction_spammer.star
View file @
b11926b6
...
...
@@ -23,7 +23,6 @@ def get_config(prefunded_addresses, el_client_context):
"spam",
comma_separated_private_keys,
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