Skip to content

Commit

Permalink
chore: Use streamr-node command in bin/run-nodes.sh (#2879)
Browse files Browse the repository at this point in the history
Use `streamr-node` instead of deprecated `broker` command.

## Future improvements

Maybe we could remove the deprecated command now? It was deprecated in
v101 (#2626)
  • Loading branch information
teogeb authored Nov 14, 2024
1 parent 765bc11 commit 2ab280c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/run-nodes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ run_application() {
{ print "\033[38;2;" color "m" substr($0, 1, 1) substr($0, index($0, " "), length($0)); color = default_color }'
}

run_application node ./dist/bin/broker.js S1 '136;136;255' configs/development-1.env.json &
run_application node ./dist/bin/broker.js B1 '0;136;255' configs/development-2.env.json &
run_application node ./dist/bin/broker.js B2 '136;204;255' configs/development-3.env.json &
run_application node ./dist/bin/streamr-node.js S1 '136;136;255' configs/development-1.env.json &
run_application node ./dist/bin/streamr-node.js B1 '0;136;255' configs/development-2.env.json &
run_application node ./dist/bin/streamr-node.js B2 '136;204;255' configs/development-3.env.json &

wait

0 comments on commit 2ab280c

Please sign in to comment.