mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
9 lines
242 B
Bash
9 lines
242 B
Bash
#!/bin/bash
|
|
while true
|
|
do
|
|
echo `date` "(Re)-starting node"
|
|
BITCOIN_AVG_PUBKEY=$BTCAVERAGE_PUBKEY BITCOIN_AVG_PRIVKEY=$BTCAVERAGE_PRIVKEY java -jar ./build/libs/bisq-pricenode.jar 2 2
|
|
echo `date` "node terminated unexpectedly!!"
|
|
sleep 3
|
|
done
|