diff --git a/scripts/simapp/generate_template_slow.sh b/scripts/simapp/generate_template_slow.sh new file mode 100755 index 00000000..72f9cf42 --- /dev/null +++ b/scripts/simapp/generate_template_slow.sh @@ -0,0 +1,19 @@ +#!/bin/bash +set -o errexit -o nounset -o pipefail +command -v shellcheck >/dev/null && shellcheck "$0" + +SCRIPT_DIR="$(realpath "$(dirname "$0")")" + +# Create template for slow simapp +( + cd "$SCRIPT_DIR" + cp -R template template_slow + chmod +x "$SCRIPT_DIR/template_slow/setup.sh" + chmod +x "$SCRIPT_DIR/template_slow/run_simd.sh" + + # Slow settings in config.toml + sed -i "" \ + -e 's/^timeout_broadcast_tx_commit =.*$/timeout_broadcast_tx_commit = "1s"/' \ + -e 's/^timeout_commit =.*$/timeout_commit = "10s"/' \ + "template_slow/.simapp/config/config.toml" +)