You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,8 @@ help:
25
25
@echo "trace-pointer - build the harmony binary & bootnode with pointer analysis"
26
26
@echo "debug - start a localnet with 2 shards (s0 rpc endpoint = localhost:9700; s1 rpc endpoint = localhost:9800)"
27
27
@echo "debug-kill - force kill the localnet"
28
+
@echo "debug-multi-bls - start a localnet with external validators and multi-BLS keys in the background"
29
+
@echo "debug-multi-bls-with-terminal - start a localnet with external validators and multi-BLS keys using screen, providing real-time logs and automatic cleanup on exit"
28
30
@echo "debug-ext - start a localnet with 2 shards and external (s0 rpc endpoint = localhost:9598; s1 rpc endpoint = localhost:9596)"
29
31
@echo "clean - remove node files & logs created by localnet"
30
32
@echo "distclean - remove node files & logs created by localnet, and all libs"
@@ -99,6 +101,15 @@ debug-multi-bls:
99
101
echo sleep 10s before creating the external validator
100
102
sleep 10
101
103
bash ./test/build-localnet-validator.sh
104
+
105
+
debug-multi-bls-with-terminal:
106
+
# add VERBOSE=true before bash or run `export VERBOSE=true` on the shell level for have max logging
107
+
# add LEGACY_SYNC=true before bash or run `export LEGACY_SYNC=true` on the shell level to switch to the legacy sync
0 commit comments