Skip to content

Commit 301766f

Browse files
authored
Merge pull request #232 from stader-labs/update_scripts_1.6.4
Update scripts
2 parents fb57d42 + d016a3d commit 301766f

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

Diff for: install/scripts/start-bn.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,14 @@ if [ "$CC_CLIENT" = "lighthouse" ]; then
8181
--eth1-blocks-per-log-query 150 \
8282
--disable-upnp \
8383
--staking \
84-
--http-allow-sync-stalled \
8584
--execution-jwt=/secrets/jwtsecret \
8685
--historic-state-cache-size 2 \
8786
$BN_ADDITIONAL_FLAGS"
8887

8988
# Performance tuning for ARM systems
9089
UNAME_VAL=$(uname -m)
9190
if [ "$UNAME_VAL" = "arm64" ] || [ "$UNAME_VAL" = "aarch64" ]; then
92-
CMD="$CMD --execution-timeout-multiplier 2 --disable-lock-timeouts"
91+
CMD="$CMD --execution-timeout-multiplier 2"
9392
fi
9493

9594
if [ ! -z "$MEV_BOOST_URL" ]; then
@@ -216,7 +215,7 @@ if [ "$CC_CLIENT" = "prysm" ]; then
216215
echo "Prysm has been configured to employ Holesky, with the genesis state being a prerequisite."
217216
if [ ! -f "/ethclient/holesky-genesis.ssz" ]; then
218217
echo "Downloading genesis..."
219-
wget https://github.com/eth-clients/holesky/raw/main/custom_config_data/genesis.ssz -O /ethclient/holesky-genesis.ssz
218+
wget https://github.com/eth-clients/holesky/blob/main/metadata/genesis.ssz -O /ethclient/holesky-genesis.ssz
220219
echo "Download complete."
221220
else
222221
echo "The genesis state has already been downloaded, and the process will proceed accordingly."

Diff for: install/scripts/start-ec.sh

+1
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,7 @@ if [ "$CLIENT" = "besu" ]; then
274274
--engine-rpc-port=${EC_ENGINE_PORT:-8551} \
275275
--engine-host-allowlist=* \
276276
--engine-jwt-secret=/secrets/jwtsecret \
277+
--Xbonsai-full-flat-db-enabled=true \
277278
$EC_ADDITIONAL_FLAGS"
278279

279280
if [ ! -z "$ETHSTATS_LABEL" ] && [ ! -z "$ETHSTATS_LOGIN" ]; then

Diff for: shared/services/config/mev-boost-config.go

-1
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,6 @@ func createDefaultRelays() []config.MevRelay {
543543
Description: "Titan Relay is a neutral, Rust-based MEV-Boost Relay optimized for low latency throughput, geographical distribution, and robustness. Select this to enable the \"non-filtering\" relay from Titan.",
544544
Urls: map[config.Network]string{
545545
config.Network_Mainnet: "https://0x8c4ed5e24fe5c6ae21018437bde147693f68cda427cd1122cf20819c30eda7ed74f72dece09bb313f2a1855595ab677d@global.titanrelay.xyz",
546-
config.Network_Holesky: "https://0xaa58208899c6105603b74396734a6263cc7d947f444f396a90f7b7d3e65d102aec7e5e5291b27e08d02c50a050825c2f@holesky.titanrelay.xyz",
547546
},
548547
Regulated: false,
549548
NoSandwiching: false,

Diff for: stader-cli/service/migration.go

+10
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ func migrate(c *cli.Context) (runBeforeUpgrades, rundAfterUpgrades []ConfigUpgra
7474
return nil, nil, err
7575
}
7676

77+
v164, err := parseVersion("1.6.4")
78+
if err != nil {
79+
return nil, nil, err
80+
}
81+
7782
// Create the collection of upgraders
7883
upgraders := []ConfigUpgrader{
7984
{
@@ -120,6 +125,11 @@ func migrate(c *cli.Context) (runBeforeUpgrades, rundAfterUpgrades []ConfigUpgra
120125
upgradeFunc: func(_ *cli.Context) error { return nil },
121126
needInstall: true,
122127
},
128+
{
129+
version: v164,
130+
upgradeFunc: func(_ *cli.Context) error { return nil },
131+
needInstall: true,
132+
},
123133
}
124134

125135
staderClient, err := stader.NewClientFromCtx(c)

0 commit comments

Comments
 (0)