Skip to content

Commit 1e4e4f1

Browse files
committed
mina local network: show what's being overriden
1 parent 06a9896 commit 1e4e4f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/mina-local-network/mina-local-network.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -796,22 +796,22 @@ update_genesis_timestamp() {
796796
update_genesis_timestamp "${UPDATE_GENESIS_TIMESTAMP}"
797797

798798
if [ ! -z "${OVERRIDE_SLOT_TIME_MS}" ]; then
799-
echo 'Modifying configuration to override slot time...'
799+
echo "Setting proof.block_window_duration_ms to ${OVERRIDE_SLOT_TIME_MS}..."
800800
jq-inplace ".proof.block_window_duration_ms=${OVERRIDE_SLOT_TIME_MS}" "${CONFIG}"
801801
fi
802802

803803
if [ ! -z "${SLOT_TX_END}" ]; then
804-
echo 'Modifying configuration to override slot transaction end...'
804+
echo "Setting daemon.slot_tx_end to ${SLOT_TX_END}..."
805805
jq-inplace ".daemon.slot_tx_end=${SLOT_TX_END}" "${CONFIG}"
806806
fi
807807

808808
if [ ! -z "${SLOT_CHAIN_END}" ]; then
809-
echo 'Modifying configuration to override slot chain end...'
809+
echo "Setting daemon.slot_chain_end to ${SLOT_CHAIN_END}..."
810810
jq-inplace ".daemon.slot_chain_end=${SLOT_CHAIN_END}" "${CONFIG}"
811811
fi
812812

813813
if [ ! -z "${HARDFORK_GENESIS_SLOT_DELTA}" ]; then
814-
echo 'Modifying configuration to override hardfork genesis slot delta...'
814+
echo "Setting daemon.hard_fork_genesis_slot_delta to ${HARDFORK_GENESIS_SLOT_DELTA}..."
815815
jq-inplace ".daemon.hard_fork_genesis_slot_delta=${HARDFORK_GENESIS_SLOT_DELTA}" "${CONFIG}"
816816
fi
817817

0 commit comments

Comments
 (0)