File tree Expand file tree Collapse file tree 1 file changed +22
-8
lines changed
mithril-test-lab/mithril-devnet Expand file tree Collapse file tree 1 file changed +22
-8
lines changed Original file line number Diff line number Diff line change 88if [ -z " ${NUM_POOL_NODES} " ]; then
99 NUM_POOL_NODES=" 2"
1010fi
11-
11+ if [ -z " ${NODES} " ]; then
12+ NODES=" *"
13+ fi
1214
1315# Bootstrap devnet
1416echo " ====================================================================="
2628# Change directory
2729cd ${ROOT}
2830
29- # Start devnet
30- echo " ====================================================================="
31- echo " Start Mithril/Cardano devnet"
32- echo " ====================================================================="
33- echo
34- ./start.sh
35- echo
31+ # Start devnet Mithril nodes
32+ if [ " ${NODES} " = " mithril" ] || [ " ${NODES} " = " *" ]; then
33+ echo " ====================================================================="
34+ echo " Start Mithril nodes"
35+ echo " ====================================================================="
36+ echo
37+ ./start-mithril.sh
38+ echo
39+ fi
40+
41+ # Start devnet Cardano nodes
42+ if [ " ${NODES} " = " cardano" ] || [ " ${NODES} " = " *" ]; then
43+ echo " ====================================================================="
44+ echo " Start Cardano nodes"
45+ echo " ====================================================================="
46+ echo
47+ ./start-cardano.sh
48+ echo
49+ fi
You can’t perform that action at this time.
0 commit comments