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 212435d commit cb6e9e3Copy full SHA for cb6e9e3
scripts/start_collator.sh
@@ -59,6 +59,10 @@ if [[ ! -z ${BLOCKS_PRUNING} ]]; then
59
collator_args+=(--blocks-pruning ${BLOCKS_PRUNING})
60
fi
61
62
+if [[ ! -z ${COLLATOR_DB_CACHE} ]]; then
63
+ collator_args+=(--db-cache ${COLLATOR_DB_CACHE})
64
+fi
65
+
66
if [[ ! -z ${LISTEN_ADDR} ]]; then
67
collator_args+=(--listen-addr ${LISTEN_ADDR})
68
else
@@ -102,6 +106,10 @@ if [[ ! -z ${RPC_METHODS} ]]; then
102
106
relay_args+=(--rpc-methods ${RPC_METHODS})
103
107
104
108
109
+if [[ ! -z ${RELAY_DB_CACHE} ]]; then
110
+ relay_args+=(--db-cache ${RELAY_DB_CACHE})
111
112
105
113
114
# collator_args+=($chain_spec)
115
0 commit comments