Commit 37dccce1 authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

fix: mev should work with the validator count change (#225)

parent 57b15fe4
...@@ -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,25 +234,21 @@ workflows: ...@@ -227,25 +234,21 @@ 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: filters:
# This pulls in KurtosisBot's Github token, so that we can read from our private repos branches:
- github-user ignore:
- main
- mev:
filters: filters:
branches: branches:
ignore: ignore:
......
{
"mev_type": "full",
"mev_params": {
"launch_custom_flood": true
},
"network_params": {
"seconds_per_slot": 3
}
}
\ No newline at end of file
...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment