From f899bcf8425f659a6e4103d6ddc229cb947f461c Mon Sep 17 00:00:00 2001 From: batphonghan Date: Tue, 2 Dec 2025 20:26:01 +0700 Subject: [PATCH 1/2] Remove flag --- install/scripts/start-bn.sh | 1 - stader-cli/service/migration.go | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) mode change 100755 => 100644 install/scripts/start-bn.sh diff --git a/install/scripts/start-bn.sh b/install/scripts/start-bn.sh old mode 100755 new mode 100644 index eeea6525..c119f7a3 --- a/install/scripts/start-bn.sh +++ b/install/scripts/start-bn.sh @@ -78,7 +78,6 @@ if [ "$CC_CLIENT" = "lighthouse" ]; then --http \ --http-address 0.0.0.0 \ --http-port ${BN_API_PORT:-5052} \ - --eth1-blocks-per-log-query 150 \ --disable-upnp \ --staking \ --execution-jwt=/secrets/jwtsecret \ diff --git a/stader-cli/service/migration.go b/stader-cli/service/migration.go index c3687065..b1e3006e 100644 --- a/stader-cli/service/migration.go +++ b/stader-cli/service/migration.go @@ -140,6 +140,11 @@ func migrate(c *cli.Context) (runBeforeUpgrades, rundAfterUpgrades []ConfigUpgra upgradeFunc: func(_ *cli.Context) error { return nil }, needInstall: true, }, + { + version: v171, + upgradeFunc: func(_ *cli.Context) error { return nil }, + needInstall: true, + }, } staderClient, err := stader.NewClientFromCtx(c) From 9ff99c333cdcf6c15cd4b466ac91258ab59c2172 Mon Sep 17 00:00:00 2001 From: batphonghan Date: Tue, 2 Dec 2025 20:26:54 +0700 Subject: [PATCH 2/2] Remove flag --- stader-cli/service/migration.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stader-cli/service/migration.go b/stader-cli/service/migration.go index b1e3006e..dda12427 100644 --- a/stader-cli/service/migration.go +++ b/stader-cli/service/migration.go @@ -84,6 +84,11 @@ func migrate(c *cli.Context) (runBeforeUpgrades, rundAfterUpgrades []ConfigUpgra return nil, nil, err } + v171, err := parseVersion("1.7.1") + if err != nil { + return nil, nil, err + } + // Create the collection of upgraders upgraders := []ConfigUpgrader{ {