github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/module/cache.go (about)

     1  package module
     2  
     3  import (
     4  	"github.com/onflow/flow-go/model/flow"
     5  )
     6  
     7  // FinalizedHeaderCache is a cache of the latest finalized block header.
     8  type FinalizedHeaderCache interface {
     9  	Get() *flow.Header
    10  }