Skip to content

Commit 32215ad

Browse files
committed
fix hoodi config (native mode by default)
1 parent 981c632 commit 32215ad

File tree

2 files changed

+4
-18
lines changed

2 files changed

+4
-18
lines changed

build/rocketpool-start.sh

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ case $NETWORK in
8484
esac
8585

8686
;;
87-
"hoodi")
87+
"testnet")
8888
echo "Hoodi network"
8989

9090
# https://github.com/dappnode/DAppNodePackage-SSV-Shifu/blob/775dfbc2190b8c3bc7384a2e4c62d83892071001/build/entrypoint.sh#L3
@@ -179,9 +179,6 @@ export BEACON_NODE_CLIENT=$_BEACON_NODE_CLIENT
179179
# BEACON_NODE_API_3500="http://beacon-chain.prysm-hoodi.dappnode:3500"
180180
# BEACON_NODE_API_4000="http://beacon-chain.prysm-hoodi.dappnode:4000"
181181

182-
if [ "$NETWORK" == "hoodi" ]; then
183-
NETWORK="testnet"
184-
fi
185182
NETWORK="${NETWORK}" \
186183
EXECUTION_NODE_CLIENT="${EXECUTION_NODE_CLIENT}" \
187184
BEACON_NODE_CLIENT="${BEACON_NODE_CLIENT}" \
@@ -201,11 +198,6 @@ if [ -f "/rocketpool/data/wallet" ]; then
201198
fi
202199
if [ ! -f /rocketpool/data/password ]; then
203200
echo "${INFO} set-password"
204-
if [ ! -f /.rocketpool/data/password ]; then
205-
mkdir -p /.rocketpool/data
206-
echo "${WALLET_PASSWORD}" > /.rocketpool/data/password
207-
echo "${WALLET_PASSWORD}" > /rocketpool/data/password
208-
fi
209201
/usr/local/bin/rocketpoold --settings /app/rocketpool/user-settings.yml api wallet set-password "${WALLET_PASSWORD}"
210202
fi
211203
echo "${INFO} Initializing Rocketpool service"

build/user-settings_template.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ reth:
181181
eventLogInterval: "1000"
182182
cacheSize: "256"
183183
containerTag: ghcr.io/paradigmxyz/reth:v1.6.0
184-
maxPeers: "50"
184+
maxPeers: "100"
185185
maxInboundPeers: "30"
186186
archiveMode: "false"
187187
nimbus:
@@ -205,12 +205,6 @@ prysm:
205205
p2pQuicPort: "8001"
206206
rpcPort: "5053"
207207
vcContainerTag: gcr.io/offchainlabs/prysm/validator:v6.0.4
208-
reth:
209-
additionalFlags: ""
210-
cache: "16384"
211-
containerTag: ghcr.io/paradigmxyz/reth:v1.6.0
212-
maxInboundPeers: "30"
213-
maxPeers: "100"
214208
root:
215209
bnMetricsPort: "9100"
216210
consensusClient: nimbus
@@ -224,13 +218,13 @@ root:
224218
executionClientMode: external
225219
exporterMetricsPort: "9103"
226220
externalConsensusClient: ${BEACON_NODE_CLIENT}
227-
isNative: "false"
221+
isNative: "true"
228222
nodeMetricsPort: "9102"
229223
reconnectDelay: 60s
230224
rpDir: /app/rocketpool/
231225
useFallbackClients: "false"
232226
vcMetricsPort: "9101"
233-
version: v1.17.2
227+
version: v1.17.3
234228
watchtowerMetricsPort: "9104"
235229
smartnode:
236230
archiveECUrl: ""

0 commit comments

Comments
 (0)