github.com/koko1123/flow-go-1@v0.29.6/state/cluster/params.go (about)

     1  package cluster
     2  
     3  import (
     4  	"github.com/koko1123/flow-go-1/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  	ChainID() (flow.ChainID, error)
    12  }