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..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{ { @@ -140,6 +145,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)