cosmjs/scripts/simapp50/generate_template_slow.sh
2023-11-22 12:58:28 +01:00

23 lines
674 B
Bash
Executable File

#!/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")")"
# Create template for slow simapp based on the regular simapp template
(
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"
)