Skip to content

Commit

Permalink
Do state pruning of cumulus relaychain node
Browse files Browse the repository at this point in the history
  • Loading branch information
olanod committed Jan 24, 2024
1 parent 952de07 commit 2161044
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ build-container-local: build-local
node_args := "--base-path /data '$NODE_ARGS' " + if rol == "collator" {
"--collator"
} else { "--rpc-external --rpc-cors=all" }
container_args := node_args + " -- '$RELAY_ARGS' --sync=warp --no-telemetry --chain " + relay + if rol == "full" {
container_args := node_args + " -- '$RELAY_ARGS' --sync=warp --state-pruning=200 --blocks-pruning=200 --no-telemetry --chain " + relay + if rol == "full" {
" --rpc-external --rpc-cors=all"
} else { "" }
container_name := chain + "-" + rol
Expand Down

0 comments on commit 2161044

Please sign in to comment.