From 95d3d0feafcfe58142afc26efc8e7b7183d7ff62 Mon Sep 17 00:00:00 2001 From: softsimon Date: Fri, 11 Jun 2021 10:55:13 -0500 Subject: [PATCH] Bisq transactions was listed in the wrong order. fixes #566 --- backend/src/api/bisq/bisq.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/api/bisq/bisq.ts b/backend/src/api/bisq/bisq.ts index db1ca435c..4f253e7bb 100644 --- a/backend/src/api/bisq/bisq.ts +++ b/backend/src/api/bisq/bisq.ts @@ -248,8 +248,8 @@ class Bisq { const data: BisqBlocks = await this.jsonParsePool.exec(cacheData); if (data.blocks && data.blocks.length !== this.allBlocks.length) { this.allBlocks = data.blocks; + this.allBlocks.reverse(); this.blocks = this.allBlocks.filter((block) => block.txs.length > 0); - this.blocks.reverse(); this.latestBlockHeight = data.chainHeight; const time = new Date().getTime() - start; logger.debug('Bisq dump processed in ' + time + ' ms (worker thread)');