From d6c2ac6907aee25616c870da1789614d82006ec1 Mon Sep 17 00:00:00 2001 From: Branko Bosnic Date: Thu, 25 Apr 2024 14:32:51 +0200 Subject: [PATCH] fix: add cursor from response --- api/src/services/nova/chronicleService.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/api/src/services/nova/chronicleService.ts b/api/src/services/nova/chronicleService.ts index 134a40cd2..3eead0aad 100644 --- a/api/src/services/nova/chronicleService.ts +++ b/api/src/services/nova/chronicleService.ts @@ -67,9 +67,7 @@ export class ChronicleService { ), "get", ); - // Hardcoded to null for now because chronicle always returns the same cursor: https://github.com/iotaledger/inx-chronicle/issues/1362 - cursor = null; - // cursor = response.cursor; + cursor = response.cursor; if (response.blocks) { slotBlocks.push(...response.blocks);