taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit adda4f8ce38ce030f55855bc0d66443d08153480
parent 4e11051d9fccdbdd40abaa630afc130eafef6602
Author: Florian Dold <florian@dold.me>
Date:   Tue, 10 Oct 2023 12:14:09 +0200

wallet-core: order transactions by descending timestamp

Diffstat:
Mpackages/taler-wallet-core/src/operations/transactions.ts | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/operations/transactions.ts b/packages/taler-wallet-core/src/operations/transactions.ts @@ -1291,10 +1291,12 @@ export async function getTransactions( const txNotPending = transactions.filter((x) => !isPending(x)); const txCmp = (h1: Transaction, h2: Transaction) => { - const tsCmp = AbsoluteTime.cmp( + // Order transactions by timestamp. Newest transactions come first. + const tsCmp = -AbsoluteTime.cmp( AbsoluteTime.fromPreciseTimestamp(h1.timestamp), AbsoluteTime.fromPreciseTimestamp(h2.timestamp), ); + // If the timestamp is exactly the same, order by transaction type. if (tsCmp === 0) { return Math.sign(txOrder[h1.type] - txOrder[h2.type]); }