github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/model/verification/chunkDataPackResponse.go (about)

     1  package verification
     2  
     3  import (
     4  	"github.com/onflow/flow-go/model/chunks"
     5  	"github.com/onflow/flow-go/model/flow"
     6  )
     7  
     8  // ChunkDataPackResponse is an internal data structure in fetcher engine that is passed between the fetcher
     9  // and requester engine. It conveys requested chunk data pack as well as meta-data for fetcher engine to
    10  // process the chunk data pack.
    11  type ChunkDataPackResponse struct {
    12  	chunks.Locator
    13  	Cdp *flow.ChunkDataPack
    14  }