File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ echo "Starting Cardano node..."
20
20
21
21
mkdir -p " $( dirname " $CARDANO_NODE_SOCKET_PATH " ) "
22
22
sleep 1
23
- cardano-node run --socket-path " $CARDANO_NODE_SOCKET_PATH " --port $CARDANO_NODE_PORT --database-path /node/db --config /config/config.json --topology /config/topology.json > /logs/node.log &
23
+ cardano-node run --socket-path " $CARDANO_NODE_SOCKET_PATH " --port $CARDANO_NODE_PORT --database-path /node/db --config /config/config.json --topology /config/topology.json &
24
24
CARDANO_NODE_PID=$!
25
25
sleep 2
26
26
27
27
echo " Starting Cardano submit api..."
28
- cardano-submit-api --listen-address 0.0.0.0 --socket-path " $CARDANO_NODE_SOCKET_PATH " --port $NODE_SUBMIT_API_PORT $NETWORK_STR --config /cardano-submit-api-config/cardano-submit-api.yaml > /logs/submit-api.log &
28
+ cardano-submit-api --listen-address 0.0.0.0 --socket-path " $CARDANO_NODE_SOCKET_PATH " --port $NODE_SUBMIT_API_PORT $NETWORK_STR --config /cardano-submit-api-config/cardano-submit-api.yaml &
29
29
CARDANO_SUBMIT_PID=$!
30
30
31
31
wait -n $CARDANO_NODE_PID $CARDANO_SUBMIT_PID
You can’t perform that action at this time.
0 commit comments