ouroboros-consensus-protocol-0.1.0.1: Cardano consensus protocols.
Safe Haskell None
Language Haskell2010

Ouroboros.Consensus.Protocol.Praos.Header

Description

Block header associated with Praos.

The choice of whether to associate the header with the ledger era or the protocol is a little artitrary. Functionally the header contains things which are associated with both ledger and protocol, and which are used by both.

We choose to associate the header with the protocol, since it more strongly binds in that direction, and to assist with the mental picture that the protocol is concerned with the block header, while the ledger is concerned with the block body. However, in order to more cleanly illustrate which parts of the header are _strictly_ protocol concerns, we also provide a view of the header (in Views ) which extracts just the fields needed for the Praos protocol. This also allows us to hide the more detailed construction of the header.

Synopsis

Documentation

data Header crypto where Source #

Full header type, carrying its own memoised bytes.

Bundled Patterns

pattern Header :: Crypto crypto => HeaderBody crypto -> SignedKES crypto ( HeaderBody crypto) -> Header crypto

data HeaderBody crypto Source #

The body of the header is the part which gets hashed to form the hash chain.

Constructors

HeaderBody

Fields

Instances

Instances details
Crypto crypto => Eq ( HeaderBody crypto) Source #
Instance details

Defined in Ouroboros.Consensus.Protocol.Praos.Header

Crypto crypto => Show ( HeaderBody crypto) Source #
Instance details

Defined in Ouroboros.Consensus.Protocol.Praos.Header

Generic ( HeaderBody crypto) Source #
Instance details

Defined in Ouroboros.Consensus.Protocol.Praos.Header

Associated Types

type Rep ( HeaderBody crypto) :: Type -> Type Source #

Crypto crypto => ToCBOR ( HeaderBody crypto) Source #
Instance details

Defined in Ouroboros.Consensus.Protocol.Praos.Header

Crypto crypto => FromCBOR ( HeaderBody crypto) Source #
Instance details

Defined in Ouroboros.Consensus.Protocol.Praos.Header

Crypto crypto => SignableRepresentation ( HeaderBody crypto) Source #
Instance details

Defined in Ouroboros.Consensus.Protocol.Praos.Header

Crypto crypto => NoThunks ( HeaderBody crypto) Source #
Instance details

Defined in Ouroboros.Consensus.Protocol.Praos.Header

type Rep ( HeaderBody crypto) Source #
Instance details

Defined in Ouroboros.Consensus.Protocol.Praos.Header

headerSize :: Header crypto -> Int Source #

Compute the size of the header