File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ for i in ${!options[@]}; do
2424 --shelley-vrf-key) CARDANO_SHELLEY_VRF_KEY=${v} ; found=true ;;
2525 --socket-path) CARDANO_SOCKET_PATH=${v} ; found=true ;;
2626 --topology) CARDANO_TOPOLOGY=${v} ; found=true ;;
27+ --start-as-non-producing-node) START_AS_NON_PRODUCING=${v} ; found=true ;;
2728 esac
2829 if [[ ${found} == true ]]; then
2930 options[i]=" " ;
@@ -44,6 +45,7 @@ CARDANO_PORT=${CARDANO_PORT:-3001}
4445CARDANO_RTS_OPTS=${CARDANO_RTS_OPTS:- -N2 -A64m -I0 -qg -qb --disable-delayed-os-memory-return}
4546CARDANO_SOCKET_PATH=${CARDANO_SOCKET_PATH:-/ ipc/ node.socket}
4647CARDANO_TOPOLOGY=${CARDANO_TOPOLOGY:- ${CARDANO_CONFIG_BASE} / ${CARDANO_NETWORK} / topology.json}
48+ START_AS_NON_PRODUCING=${START_AS_NON_PRODUCING:- false}
4749# mithril and devnet
4850case ${CARDANO_NETWORK} in
4951 mainnet|preprod) __path=release-${CARDANO_NETWORK} ;;
@@ -81,7 +83,6 @@ if [[ -z $ANCILLARY_VERIFICATION_KEY && -f $ANCILLARY_VERIFICATION_KEY_PATH ]];
8183fi
8284SNAPSHOT_DIGEST=${SNAPSHOT_DIGEST:- latest}
8385RESTORE_SNAPSHOT=${RESTORE_SNAPSHOT:- true}
84- START_AS_NON_PRODUCING=${START_AS_NON_PRODUCING:- false}
8586
8687echo CARDANO_BIND_ADDR=${CARDANO_BIND_ADDR}
8788echo CARDANO_BLOCK_PRODUCER=${CARDANO_BLOCK_PRODUCER}
You can’t perform that action at this time.
0 commit comments