github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/state/cluster/params.go (about)

     1  package cluster
     2  
     3  import (
     4  	"github.com/onflow/flow-go/model/flow"
     5  )
     6  
     7  // Params contains constant information about this cluster state.
     8  type Params interface {
     9  	// ChainID returns the chain ID for this cluster.
    10  	ChainID() flow.ChainID
    11  }