canton-amm-ledger-core 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/main.js +2 -2
- package/package.json +1 -1
package/dist/src/main.js
CHANGED
|
@@ -2642,8 +2642,8 @@ export async function getHistoryForParty(user, client, logger, beginExclusive, p
|
|
|
2642
2642
|
SPLICE_API_TOKEN_TRANSFER_INSTRUCTION_V1_TRANSFER_INSTRUCTION_INTERFACE_ID,
|
|
2643
2643
|
SPLICE_API_TOKEN_TRANSFER_INSTRUCTION_V1_TRANSFER_FACTORY_INTERFACE_ID,
|
|
2644
2644
|
];
|
|
2645
|
-
// Paginate through all updates (max
|
|
2646
|
-
const PAGE_LIMIT =
|
|
2645
|
+
// Paginate through all updates (max 150 per request)
|
|
2646
|
+
const PAGE_LIMIT = 150;
|
|
2647
2647
|
const allUpdates = [...previousUpdates];
|
|
2648
2648
|
let currentBeginExclusive = startOffset;
|
|
2649
2649
|
while (true) {
|