Skip to content

Commit

Permalink
Reth full node pruning (#1456)
Browse files Browse the repository at this point in the history
* Reth full node pruning

* More expect troubleshooting

* Set TERM for whiptail CI
  • Loading branch information
yorickdowne authored Aug 29, 2023
1 parent 8352452 commit c52d3d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions reth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ services:
- JWT_SECRET=${JWT_SECRET:-}
- EL_EXTRAS=${EL_EXTRAS:-}
- LOG_LEVEL=${LOG_LEVEL:-info}
- ARCHIVE_NODE=${ARCHIVE_NODE:-}
# Make this RUST_LOG=${LOG_LEVEL:-info},engine=trace when requiring deep debug
- RUST_LOG=${LOG_LEVEL:-info}
- RUST_LOG_STYLE=never
Expand Down
9 changes: 8 additions & 1 deletion reth/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@ case ${LOG_LEVEL} in
;;
esac

if [ "${ARCHIVE_NODE}" = "true" ]; then
echo "Reth archive node without pruning"
__prune=""
else
__prune="--full"
fi

# Word splitting is desired for the command line parameters
# shellcheck disable=SC2086
exec "$@" ${__verbosity} ${EL_EXTRAS}
exec "$@" ${__verbosity} ${__prune} ${EL_EXTRAS}

0 comments on commit c52d3d5

Please sign in to comment.