mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +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
|