cosmjs/scripts/simapp46/generate_template_slow.sh

23 lines
674 B
Bash
Raw Permalink Normal View History

2022-07-06 08:55:00 +02:00
#!/bin/bash
set -o errexit -o nounset -o pipefail
command -v shellcheck >/dev/null && shellcheck "$0"
gnused="$(command -v gsed || echo sed)"
SCRIPT_DIR="$(realpath "$(dirname "$0")")"
2022-08-03 16:29:59 +02:00
# Create template for slow simapp based on the regular simapp template
2022-07-06 08:55:00 +02:00
(
cd "$SCRIPT_DIR"
rm -rf template_slow
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
"$gnused" -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"
)