iotaledger / explorer

Explore the IOTA Tangle
https://explorer.iota.org
Apache License 2.0
59 stars 20 forks source link

[Task]: Blocks of type tx not showing in slot with transaction blocks #1440

Closed begonaalvarezd closed 5 months ago

begonaalvarezd commented 5 months ago

Task description

eg /alphanet/slot/32922 it says there is 1 tx, but I cant find it in the referenced blocks

It seems to be because we are not fetching all the slots in the first place, and its because of this issue https://github.com/iotaledger/inx-chronicle/issues/1362

brancoder commented 5 months ago

This happens because there is a bug in chronicle where each request returns the same cursor and we cant all blocks but just the first 100: Blocked by: https://github.com/iotaledger/inx-chronicle/issues/1362

 // 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;
begonaalvarezd commented 5 months ago

Chronicle has been updated with the fix