Skip to content

Commit a300430

Browse files
authored
Merge pull request #1096 from input-output-hk/fix-epoch-pagination-lower-bound
Fix blocks in epoch first cursor not being 0
2 parents 84db275 + c381562 commit a300430

File tree

1 file changed

+1
-1
lines changed
  • jormungandr/src/explorer/graphql

1 file changed

+1
-1
lines changed

jormungandr/src/explorer/graphql/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ impl Epoch {
783783
.wait()?;
784784

785785
let boundaries = PaginationInterval::Inclusive(InclusivePaginationInterval {
786-
lower_bound: epoch_lower_bound,
786+
lower_bound: 0,
787787
upper_bound: epoch_upper_bound
788788
.checked_sub(epoch_lower_bound)
789789
.expect("pagination upper_bound to be greater or equal than lower_bound"),

0 commit comments

Comments
 (0)