mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 18:03:12 +01:00
4dc24e5606
Disable BitcoinAverage provider. Keep it registered as a provider to ensure that the data structure returned by the pricenode to the Bisq clients contain the hardcoded "btcAverageTs" key.
9 lines
164 B
Bash
9 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
|