tx ordering
This commit is contained in:
parent
cf3aaee28a
commit
ff50526560
@ -18,7 +18,12 @@
|
|||||||
* Imports.
|
* Imports.
|
||||||
*/
|
*/
|
||||||
import { InternalWalletState } from "./state";
|
import { InternalWalletState } from "./state";
|
||||||
import { Stores, ReserveRecordStatus, PurchaseRecord, WithdrawalSourceType } from "../types/dbTypes";
|
import {
|
||||||
|
Stores,
|
||||||
|
ReserveRecordStatus,
|
||||||
|
PurchaseRecord,
|
||||||
|
WithdrawalSourceType,
|
||||||
|
} from "../types/dbTypes";
|
||||||
import { Amounts, AmountJson } from "../util/amounts";
|
import { Amounts, AmountJson } from "../util/amounts";
|
||||||
import { timestampCmp } from "../util/time";
|
import { timestampCmp } from "../util/time";
|
||||||
import {
|
import {
|
||||||
@ -299,7 +304,11 @@ export async function getTransactions(
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
transactions.sort((h1, h2) => timestampCmp(h1.timestamp, h2.timestamp));
|
const txPending = transactions.filter((x) => x.pending);
|
||||||
|
const txNotPending = transactions.filter((x) => !x.pending);
|
||||||
|
|
||||||
return { transactions };
|
txPending.sort((h1, h2) => timestampCmp(h1.timestamp, h2.timestamp));
|
||||||
|
txNotPending.sort((h1, h2) => timestampCmp(h1.timestamp, h2.timestamp));
|
||||||
|
|
||||||
|
return { transactions: [...txPending, ...txNotPending] };
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user