Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- data ModChainSel p s
- data family ConsensusConfig p :: Type
Documentation
data ModChainSel p s Source #
Instances
Type family instances
data family ConsensusConfig p :: Type Source #
Static configuration required to run the consensus protocol
Every method in the
ConsensusProtocol
class takes the consensus
configuration as a parameter, so having this as a data family rather than a
type family resolves most ambiguity.
Defined out of the class so that protocols can define this type without having to define the entire protocol at the same time (or indeed in the same module).