Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Marconi.Cardano.Core.Extract.WithDistance
Description
Attach distance to the tip to an event
Synopsis
- data WithDistance event = WithDistance Word64 event
- attachDistance :: BlockNo -> ChainTip -> event -> WithDistance event
- chainDistance :: WithDistance event -> Word64
- getEvent :: WithDistance event -> event
Documentation
data WithDistance event #
A type to store the distance, in blocks, to the tip of the chain
Constructors
WithDistance Word64 event |
Instances
attachDistance :: BlockNo -> ChainTip -> event -> WithDistance event #
Attach the distance (in blocks) to the tip to an event
chainDistance :: WithDistance event -> Word64 #
getEvent :: WithDistance event -> event #