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
f124bbf9
Unverified
Commit
f124bbf9
authored
Aug 28, 2024
by
Barnabas Busa
Committed by
GitHub
Aug 28, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: remove epoch checker for goomy (#754)
parent
1be7efa0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
20 deletions
+5
-20
goomy_blob.star
src/goomy_blob/goomy_blob.star
+5
-20
No files found.
src/goomy_blob/goomy_blob.star
View file @
f124bbf9
...
@@ -52,29 +52,14 @@ def get_config(
...
@@ -52,29 +52,14 @@ def get_config(
goomy_args = "combined -b 2 -t 2 --max-pending 3"
goomy_args = "combined -b 2 -t 2 --max-pending 3"
goomy_cli_args.append(goomy_args)
goomy_cli_args.append(goomy_args)
cmd = "./blob-spammer -p {0} {1}".format(
prefunded_addresses[4].private_key, " ".join(goomy_cli_args)
)
return ServiceConfig(
return ServiceConfig(
image=IMAGE_NAME,
image=IMAGE_NAME,
entrypoint=ENTRYPOINT_ARGS,
entrypoint=ENTRYPOINT_ARGS,
cmd=[
cmd=[cmd],
" && ".join(
[
"apt-get update",
"apt-get install -y curl jq",
'current_epoch=$(curl -s {0}/eth/v2/beacon/blocks/head | jq -r ".version")'.format(
cl_context.beacon_http_url,
),
'while [ $current_epoch != "deneb" ]; do echo "waiting for deneb, current epoch is $current_epoch"; current_epoch=$(curl -s {0}/eth/v2/beacon/blocks/head | jq -r ".version"); sleep {1}; done'.format(
cl_context.beacon_http_url,
seconds_per_slot,
),
'echo "sleep is over, starting to send blob transactions"',
"./blob-spammer -p {0} {1}".format(
prefunded_addresses[4].private_key,
" ".join(goomy_cli_args),
),
]
)
],
min_cpu=MIN_CPU,
min_cpu=MIN_CPU,
max_cpu=MAX_CPU,
max_cpu=MAX_CPU,
min_memory=MIN_MEMORY,
min_memory=MIN_MEMORY,
...
...
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