From e4ae9a35d331525bc316dadbeee45a63883188f1 Mon Sep 17 00:00:00 2001 From: Yorick Downe Date: Sat, 17 Jan 2026 07:07:06 +0000 Subject: [PATCH] Enable Grandine plugin mev boost factor --- .github/workflows/test-client-combos.yml | 4 ++-- nethermind/docker-entrypoint.sh | 14 +++++--------- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test-client-combos.yml b/.github/workflows/test-client-combos.yml index 4b27f92e..eabb7cef 100644 --- a/.github/workflows/test-client-combos.yml +++ b/.github/workflows/test-client-combos.yml @@ -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 @@ -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 diff --git a/nethermind/docker-entrypoint.sh b/nethermind/docker-entrypoint.sh index daa4d52a..037570ba 100755 --- a/nethermind/docker-entrypoint.sh +++ b/nethermind/docker-entrypoint.sh @@ -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=""