We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b52083f commit 29fcabaCopy full SHA for 29fcaba
reth/reth-entrypoint
@@ -19,7 +19,7 @@ fi
19
20
# Enable Flashblocks support if websocket URL is provided
21
if [[ -n "${RETH_FB_WEBSOCKET_URL:-}" ]]; then
22
- ADDITIONAL_ARGS="--websocket-url=$RETH_FB_WEBSOCKET_URL"
+ ADDITIONAL_ARGS="$ADDITIONAL_ARGS --websocket-url=$RETH_FB_WEBSOCKET_URL"
23
echo "Enabling Flashblocks support with endpoint: $RETH_FB_WEBSOCKET_URL"
24
else
25
echo "Running in vanilla node mode (no Flashblocks URL provided)"
@@ -32,6 +32,7 @@ if [[ "${RETH_PRUNING_ARGS+x}" = x ]]; then
32
fi
33
34
mkdir -p "$RETH_DATA_DIR"
35
+echo "Starting reth with additional args: $ADDITIONAL_ARGS"
36
echo "$OP_NODE_L2_ENGINE_AUTH_RAW" > "$OP_NODE_L2_ENGINE_AUTH"
37
38
exec "$BINARY" node \
0 commit comments