github.com/koko1123/flow-go-1@v0.29.6/model/verification/chunkDataPackResponse.go (about) 1 package verification 2 3 import ( 4 "github.com/koko1123/flow-go-1/model/chunks" 5 "github.com/koko1123/flow-go-1/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 }