Skip to content

Commit

Permalink
stellar#4430: used correct index constants
Browse files Browse the repository at this point in the history
  • Loading branch information
sreuland committed Jun 23, 2022
1 parent 9a86d87 commit fbfe2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exp/lighthorizon/actions/operation.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func Operations(archiveWrapper archive.Wrapper, indexStore index.Store) func(htt
if account != "" {
// Skip the cursor ahead to the next active checkpoint for this account
var checkpoint uint32
checkpoint, err = indexStore.NextActive(account, "all_all", uint32(toid.Parse(paginate.Cursor).LedgerSequence/64))
checkpoint, err = indexStore.NextActive(account, "all/all", uint32(toid.Parse(paginate.Cursor).LedgerSequence/64))
if err == io.EOF {
// never active. No results.
page.PopulateLinks()
Expand Down

0 comments on commit fbfe2ac

Please sign in to comment.