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
11c26939
Unverified
Commit
11c26939
authored
Dec 05, 2023
by
Barnabas Busa
Committed by
GitHub
Dec 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: allow 0 genesis delay (#383)
parent
97a070b6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
8 deletions
+10
-8
dencun.yaml
examples/dencun.yaml
+0
-1
verkle-gen-nethermind.yaml
examples/verkle-gen-nethermind.yaml
+10
-4
input_parser.star
src/package_io/input_parser.star
+0
-3
No files found.
examples/dencun.yaml
View file @
11c26939
...
@@ -25,7 +25,6 @@ participants:
...
@@ -25,7 +25,6 @@ participants:
cl_client_image
:
ethpandaops/nimbus:unstable-6dee4d5
cl_client_image
:
ethpandaops/nimbus:unstable-6dee4d5
network_params
:
network_params
:
deneb_fork_epoch
:
1
deneb_fork_epoch
:
1
launch_additional_services
:
true
additional_services
:
additional_services
:
-
el_forkmon
-
el_forkmon
-
tx_spammer
-
tx_spammer
...
...
examples/verkle-gen-nethermind.yaml
View file @
11c26939
...
@@ -3,20 +3,26 @@ participants:
...
@@ -3,20 +3,26 @@ participants:
el_client_image
:
ethpandaops/geth:gballet-kaustinen-with-shapella-fc8f4b9
el_client_image
:
ethpandaops/geth:gballet-kaustinen-with-shapella-fc8f4b9
cl_client_type
:
lighthouse
cl_client_type
:
lighthouse
cl_client_image
:
ethpandaops/lighthouse:verkle-trees-capella-2ffb8a9
cl_client_image
:
ethpandaops/lighthouse:verkle-trees-capella-2ffb8a9
count
:
2
-
el_client_type
:
geth
el_client_image
:
ethpandaops/geth:gballet-kaustinen-with-shapella-fc8f4b9
cl_client_type
:
lodestar
cl_client_image
:
ethpandaops/lodestar:g11tech-verge-815364b
-
el_client_type
:
nethermind
-
el_client_type
:
nethermind
el_client_image
:
nethermindeth/nethermind:kaustinen
el_client_image
:
nethermindeth/nethermind:kaustinen
-648c6b8
cl_client_type
:
lodestar
cl_client_type
:
lodestar
cl_client_image
:
ethpandaops/lodestar:g11tech-verge-815364b
cl_client_image
:
ethpandaops/lodestar:g11tech-verge-815364b
validator_count
:
0
validator_count
:
0
el_client_log_level
:
"
debug"
-
el_client_type
:
nethermind
-
el_client_type
:
nethermind
el_client_image
:
nethermindeth/nethermind:kaustinen
el_client_image
:
nethermindeth/nethermind:kaustinen
-648c6b8
cl_client_type
:
lodestar
cl_client_type
:
lodestar
cl_client_image
:
ethpandaops/lodestar:g11tech-verge-815364b
cl_client_image
:
ethpandaops/lodestar:g11tech-verge-815364b
validator_count
:
0
validator_count
:
0
el_client_log_level
:
"
debug"
network_params
:
network_params
:
electra_fork_epoch
:
0
electra_fork_epoch
:
0
seconds_per_slot
:
3
genesis_delay
:
0
seconds_per_slot
:
8
additional_services
:
additional_services
:
-
el_forkmon
-
el_forkmon
-
tx_spammer
-
tx_spammer
...
...
src/package_io/input_parser.star
View file @
11c26939
...
@@ -323,9 +323,6 @@ def parse_network_params(input_args):
...
@@ -323,9 +323,6 @@ def parse_network_params(input_args):
if result["network_params"]["seconds_per_slot"] == 0:
if result["network_params"]["seconds_per_slot"] == 0:
fail("seconds_per_slot is 0 needs to be > 0 ")
fail("seconds_per_slot is 0 needs to be > 0 ")
if result["network_params"]["genesis_delay"] == 0:
fail("genesis_delay is 0 needs to be > 0 ")
if result["network_params"]["deneb_fork_epoch"] == 0:
if result["network_params"]["deneb_fork_epoch"] == 0:
fail("deneb_fork_epoch is 0 needs to be > 0 ")
fail("deneb_fork_epoch is 0 needs to be > 0 ")
...
...
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