Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-client-combos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
COMPOSE_FILE=grandine-plugin.yml:lighthouse-vc-only.yml:nethermind.yml:mev-boost.yml
FEE_RECIPIENT=0xDccf8451070a86183eE70D330C4c43b686E9CF86
NM_DOCKER_REPO=sifrai/grandine
NM_DOCKER_TAG=unstable-nethermind-1.35.8
NM_DOCKER_TAG=unstable-nethermind
test_cl: false
test_el: true
test_vc: true
Expand All @@ -68,7 +68,7 @@ jobs:
COMPOSE_FILE=grandine-plugin-allin1.yml:nethermind.yml:mev-boost.yml
FEE_RECIPIENT=0xDccf8451070a86183eE70D330C4c43b686E9CF86
NM_DOCKER_REPO=sifrai/grandine
NM_DOCKER_TAG=unstable-nethermind-1.35.8
NM_DOCKER_TAG=unstable-nethermind
test_cl: false
test_el: true
test_vc: false
Expand Down
14 changes: 5 additions & 9 deletions nethermind/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -243,20 +243,16 @@ if [[ "${COMPOSE_FILE}" =~ grandine-plugin(-allin1)?\.yml ]]; then
echo "WARNING: This conflicts with MEV_BOOST true. Set factor in a range of 1 to 100"
;;
[1-9]|[1-9][0-9])
#__mev_factor="--default-builder-boost-factor ${build_factor}"
#echo "Enabled MEV Build Factor of ${build_factor}"
__mev_factor=""
echo "WARNING: Embedded Grandine does not support --builder-boost-factor. MEV build factor ${build_factor} not applied."
__mev_factor=" --grandine-defaultbuilderboostfactor ${build_factor}"
echo "Enabled MEV Build Factor of ${build_factor}"
;;
100)
#__mev_factor="--default-builder-boost-factor 18446744073709551615"
#echo "Always prefer MEV builder blocks, MEV_BUILD_FACTOR 100"
__mev_factor=""
echo "WARNING: Embedded Grandine does not support --builder-boost-factor. MEV build factor ${build_factor} not applied."
__mev_factor=" --grandine-defaultbuilderboostfactor 18446744073709551615"
echo "Always prefer MEV builder blocks, MEV_BUILD_FACTOR 100"
;;
"")
__mev_factor=""
#echo "Use default --grandine-defaultbuilderboostfactor"
echo "Use default --grandine-defaultbuilderboostfactor"
;;
*)
__mev_factor=""
Expand Down