diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5c2e77250..1dc77603b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: id-token: write pull-requests: write container: - image: ghcr.io/kiracore/docker/base-image:v0.13.11 + image: ghcr.io/kiracore/docker/base-image:v0.13.12 steps: # Work around https://github.com/actions/checkout/issues/760 - name: Add safe.directory diff --git a/RELEASE.md b/RELEASE.md index 00a4143dc..52c103f67 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,4 +1,3 @@ Features: -* Update base image version -* Fix undeclared $files in seeds-edit.sh +* Decreasse commit timeout 10000ms -> 30000ms \ No newline at end of file diff --git a/scripts/version.sh b/scripts/version.sh index abf563af5..291640957 100644 --- a/scripts/version.sh +++ b/scripts/version.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -echo "v0.11.22" +echo "v0.11.27" diff --git a/workstation/containers/start-validator.sh b/workstation/containers/start-validator.sh index 27c11d04d..70ca7b3ea 100644 --- a/workstation/containers/start-validator.sh +++ b/workstation/containers/start-validator.sh @@ -113,7 +113,7 @@ if (! $($KIRA_COMMON/container-healthy.sh "$CONTAINER_NAME")) ; then globSet cfg_statesync_enable "true" $GLOBAL_COMMON globSet cfg_statesync_temp_dir "/tmp" $GLOBAL_COMMON # CFG [CONSENSUS] - globSet cfg_consensus_timeout_commit "10000ms" $GLOBAL_COMMON + globSet cfg_consensus_timeout_commit "3000ms" $GLOBAL_COMMON globSet cfg_consensus_create_empty_blocks_interval "20s" $GLOBAL_COMMON globSet cfg_consensus_skip_timeout_commit "false" $GLOBAL_COMMON # CFG [INSTRUMENTATION] diff --git a/workstation/init.sh b/workstation/init.sh index 8e2f07791..33f555c4a 100755 --- a/workstation/init.sh +++ b/workstation/init.sh @@ -25,7 +25,7 @@ if [ "$USER" != root ]; then fi # Used To Initialize essential dependencies -BASE_IMAGE_VERSION="v0.13.11" +BASE_IMAGE_VERSION="v0.13.14" TOOLS_VERSION="v0.3.46" COSIGN_VERSION="v2.0.2" diff --git a/workstation/menu/mnemonic-select.sh b/workstation/menu/mnemonic-select.sh index 6f73d893e..9555461cb 100644 --- a/workstation/menu/mnemonic-select.sh +++ b/workstation/menu/mnemonic-select.sh @@ -66,7 +66,7 @@ while : ; do echoNLog "Input 24 whitespace-separated bip39 words or press [ENTER] to autogen.: " && read MASTER_MNEMONIC MASTER_MNEMONIC=$(echo "$MASTER_MNEMONIC" | xargs 2> /dev/null || echo -n "") MASTER_MNEMONIC=$(echo ${MASTER_MNEMONIC//,/ }) - if [ -z $MASTER_MNEMONIC ] ; then + if [ -z "$MASTER_MNEMONIC" ] ; then rm -rfv "$KIRA_SECRETS" mkdir -p "$KIRA_SECRETS" && touch $MNEMONICS setVar MASTER_MNEMONIC "autogen" "$MNEMONICS"