Merge branch 'master' into simon/angular-universal

* master:
  Enable nginx reverse proxy cache for sponsor profile images + misc tweaks
  Update Bisq price API: markets.bisq.network -> bisq.markets
This commit is contained in:
softsimon
2020-11-07 14:03:03 +07:00
2 changed files with 19 additions and 4 deletions

View File

@@ -138,7 +138,7 @@ class Bisq {
}
private updatePrice() {
request('https://markets.bisq.network/api/trades/?market=bsq_btc', { json: true }, (err, res, trades: BisqTrade[]) => {
request('https://bisq.markets/api/trades/?market=bsq_btc', { json: true }, (err, res, trades: BisqTrade[]) => {
if (err || !Array.isArray(trades)) { return logger.err('Error updating Bisq market price: ' + err); }
const prices: number[] = [];