From 95f103b4fd5765a0ecef57627336f4ee8b254a6e Mon Sep 17 00:00:00 2001 From: Dave Hrycyszyn Date: Wed, 8 Jan 2020 15:13:30 +0000 Subject: [PATCH] scripts: local network now runs --- scripts/run_local_network.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run_local_network.sh b/scripts/run_local_network.sh index e8e1b7d3c2..869a1f4d1a 100755 --- a/scripts/run_local_network.sh +++ b/scripts/run_local_network.sh @@ -27,12 +27,12 @@ for (( j=0; j<$NUMMIXES; j++ )) # Will make it later either configurable by flags or config file. do let layer=j%MAX_LAYERS+1 - $PWD/target/debug/nym-mixnode run --port $((9980+$j)) --host "localhost" --layer $layer & + $PWD/target/debug/nym-mixnode run --port $((9980+$j)) --host "localhost" --layer $layer --directory http://localhost:8080/ & sleep 1 done sleep 1 -$PWD/target/debug/nym-sfw-provider run --host "localhost" --port 9997 +$PWD/target/debug/nym-sfw-provider run --clientHost "localhost" --mixHost "localhost" --mixPort 9997 --clientPort 9998 --directory http://localhost:8080/ # trap call ctrl_c() trap ctrl_c SIGINT SIGTERM SIGTSTP