mirror of
https://github.com/mempool/mempool.git
synced 2026-08-18 13:08:44 +02:00
Bisq market: Fix for missing prices from /trades
This commit is contained in:
parent
c1c0521ab4
commit
77cbb302ce
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue