github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/module/state_synchronization/index_reporter.go (about) 1 package state_synchronization 2 3 // IndexReporter provides information about the current state of the execution state indexer. 4 type IndexReporter interface { 5 // LowestIndexedHeight returns the lowest height indexed by the execution state indexer. 6 LowestIndexedHeight() (uint64, error) 7 // HighestIndexedHeight returns the highest height indexed by the execution state indexer. 8 HighestIndexedHeight() (uint64, error) 9 }