-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathstart-pool.sh
executable file
·24 lines (19 loc) · 1.01 KB
/
start-pool.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source integration_tests/cli/common.sh
LOCALNET_DIR=".localnet"
SED_EXT=
# patch configs properly by having all values >= 1 sec, otherwise headers may start having time from the future and light client verification will fail
# if we patch config to have new blocks created in less than 1 sec, the min time in a time header is still 1 sec.
# So, new blocks started to be from the future.
patch_consensus_config() {
local NODE_CONFIGS="$(find "$LOCALNET_DIR" -type f -name "config.toml" -wholename "*node*")"
for NODE_CONFIG in ${NODE_CONFIGS}; do
sed -i $SED_EXT 's/timeout_propose = "3s"/timeout_propose = "1s"/g' "${NODE_CONFIG}"
#sed -i $SED_EXT 's/timeout_prevote = "1s"/timeout_prevote = "1s"/g' "${NODE_CONFIG}"
#sed -i $SED_EXT 's/timeout_precommit = "1s"/timeout_precommit = "1s"/g' "${NODE_CONFIG}"
sed -i $SED_EXT 's/timeout_commit = "5s"/timeout_commit = "1s"/g' "${NODE_CONFIG}"
done
}
make install image localnet_rebuild
patch_consensus_config
make localnet_start
wait_for_height 2 20