github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/engine/execution/ingestion/loader.go (about)

     1  package ingestion
     2  
     3  import (
     4  	"context"
     5  
     6  	"github.com/onflow/flow-go/model/flow"
     7  )
     8  
     9  type BlockLoader interface {
    10  	LoadUnexecuted(ctx context.Context) ([]flow.Identifier, error)
    11  }