Skip to content

Commit 6c403dc

Browse files
committed
mina local network: show what's being overriden
1 parent 3d881c2 commit 6c403dc

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
@@ -795,22 +795,22 @@ update_genesis_timestamp() {
795795
update_genesis_timestamp "${UPDATE_GENESIS_TIMESTAMP}"
796796

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

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

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

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

0 commit comments

Comments
 (0)