mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-11-17 08:17:57 +00:00
8 lines
164 B
Bash
8 lines
164 B
Bash
#!/bin/bash
|
|
while true
|
|
do
|
|
echo `date` "(Re)-starting node"
|
|
java -jar ./build/libs/bisq-pricenode.jar 2 2
|
|
echo `date` "node terminated unexpectedly!!"
|
|
sleep 3
|
|
done
|