mirror of
https://github.com/mempool/mempool.git
synced 2025-01-18 05:12:35 +01:00
Bisq market: Fix for missing prices from /trades
This commit is contained in:
parent
c1c0521ab4
commit
77cbb302ce
@ -172,7 +172,8 @@ class BisqMarketsApi {
|
||||
timestamp_to = new Date().getTime() / 1000;
|
||||
}
|
||||
|
||||
const matches = this.getTradesByCriteria(_market, timestamp_to, timestamp_from, trade_id_to, trade_id_from, direction, sort, limit);
|
||||
const matches = this.getTradesByCriteria(_market, timestamp_to, timestamp_from,
|
||||
trade_id_to, trade_id_from, direction, sort, limit, false);
|
||||
|
||||
if (sort === 'asc') {
|
||||
matches.sort((a, b) => a.tradeDate - b.tradeDate);
|
||||
|
Loading…
Reference in New Issue
Block a user