Skip to content

Commit

Permalink
fix: no broadcast-mode block
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Meier <[email protected]>
  • Loading branch information
n0izn0iz committed Jan 18, 2024
1 parent 008e505 commit 19a1721
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integration-test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ set -x

make install

parallel --lb -j2 --halt-on-error 2 ::: './start.sh' './integration-test/test.sh'
parallel --lb -j2 --halt-on-error 2 ::: './start.sh >> node_logs.txt 2>&1' './integration-test/test.sh'
5 changes: 3 additions & 2 deletions integration-test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ set -x

rm -fr teritori-dapp
git clone https://github.com/TERITORI/teritori-dapp.git
#cd ~/Code/teritori-dapp
cd teritori-dapp
git checkout 267a3f9604d48c6f1ea5c31d13a5d24c6ed35210
git checkout 4ee2706bb5b1a929c481894741b379cd3565dbce

yarn

while ! curl http://localhost:1317/node_info; do sleep 1; done
while ! curl -s http://localhost:26657/status | jq -e '.result.sync_info.latest_block_height|tonumber > 0'; do sleep 5; done

npx tsx packages/scripts/network-setup/deploy teritori-localnet validator

0 comments on commit 19a1721

Please sign in to comment.