github.com/onflow/flow-go@v0.33.17/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  
    10  	// ChainID returns the chain ID for this cluster.
    11  	// No errors are expected during normal operation.
    12  	ChainID() (flow.ChainID, error)
    13  }