We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e684286 commit 322934fCopy full SHA for 322934f
1 file changed
reth/reth-entrypoint
@@ -72,6 +72,10 @@ if [[ "${RETH_PRUNING_ARGS+x}" = x ]]; then
72
ADDITIONAL_ARGS="$ADDITIONAL_ARGS $RETH_PRUNING_ARGS"
73
fi
74
75
+if [[ "${CLEAR_EXEX_WAL:-false}" == "true" ]]; then
76
+ rm -rf $RETH_DATA_DIR/exex/wal
77
+fi
78
+
79
if [[ "$RETH_HISTORICAL_PROOFS" == "true" && -n "$RETH_HISTORICAL_PROOFS_STORAGE_PATH" ]]; then
80
# reth doesn't like starting an old database in RO mode, so we have to start the reth node, wait for it to start up, then shut it down first
81
"$BINARY" node \
0 commit comments