mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 22:45:21 +01:00
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.
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
|