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
37dccce1
Unverified
Commit
37dccce1
authored
Sep 22, 2023
by
Gyanendra Mishra
Committed by
GitHub
Sep 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: mev should work with the validator count change (#225)
parent
57b15fe4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
9 deletions
+24
-9
config.yml
.circleci/config.yml
+12
-9
mev.json
.circleci/tests/mev.json
+9
-0
parse_input.star
src/package_io/parse_input.star
+3
-0
No files found.
.circleci/config.yml
View file @
37dccce1
...
@@ -164,6 +164,13 @@ jobs:
...
@@ -164,6 +164,13 @@ jobs:
-
checkout
-
checkout
-
run
:
kurtosis run ${PWD} "$(cat ./.circleci/tests/teku-all.json)"
-
run
:
kurtosis run ${PWD} "$(cat ./.circleci/tests/teku-all.json)"
mev
:
executor
:
ubuntu_vm
steps
:
-
<<
:
*setup_kurtosis
-
checkout
-
run
:
kurtosis run ${PWD} "$(cat ./.circleci/tests/mev.json)"
workflows
:
workflows
:
check_latest_version
:
check_latest_version
:
when
:
<< pipeline.parameters.should-enable-check-latest-version-workflow >>
when
:
<< pipeline.parameters.should-enable-check-latest-version-workflow >>
...
@@ -227,26 +234,22 @@ workflows:
...
@@ -227,26 +234,22 @@ workflows:
ignore
:
ignore
:
-
main
-
main
-
run_starlark
:
-
run_starlark
:
context
:
# This pulls in KurtosisBot's Github token, so that we can read from our private repos
-
github-user
filters
:
filters
:
branches
:
branches
:
ignore
:
ignore
:
-
main
-
main
-
run_starlark_arm64
:
-
run_starlark_arm64
:
context
:
# This pulls in KurtosisBot's Github token, so that we can read from our private repos
-
github-user
filters
:
filters
:
branches
:
branches
:
ignore
:
ignore
:
-
main
-
main
-
lint
:
-
lint
:
context
:
# This pulls in KurtosisBot's Github token, so that we can read from our private repos
-
github-user
filters
:
filters
:
branches
:
branches
:
ignore
:
ignore
:
-
main
-
main
-
mev
:
filters
:
branches
:
ignore
:
-
main
.circleci/tests/mev.json
0 → 100644
View file @
37dccce1
{
"mev_type"
:
"full"
,
"mev_params"
:
{
"launch_custom_flood"
:
true
},
"network_params"
:
{
"seconds_per_slot"
:
3
}
}
\ No newline at end of file
src/package_io/parse_input.star
View file @
37dccce1
...
@@ -233,6 +233,9 @@ def enrich_mev_extra_params(parsed_arguments_dict, mev_prefix, mev_port, mev_typ
...
@@ -233,6 +233,9 @@ def enrich_mev_extra_params(parsed_arguments_dict, mev_prefix, mev_port, mev_typ
},
},
"validator_extra_params": ["--builder-proposals"],
"validator_extra_params": ["--builder-proposals"],
"builder_network_params": None,
"builder_network_params": None,
"validator_count": package_io_parser.default_network_params()[
"num_validator_keys_per_node"
],
}
}
parsed_arguments_dict["participants"].append(mev_participant)
parsed_arguments_dict["participants"].append(mev_participant)
...
...
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