Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 543 Bytes

20221221082822-txfee.org

File metadata and controls

21 lines (15 loc) · 543 Bytes

TxFee

-- ----------------------------------------------------------------------------
-- Transaction fees
--

data TxFee era where

     TxFeeImplicit :: TxFeesImplicitInEra era -> TxFee era

     TxFeeExplicit :: TxFeesExplicitInEra era -> Lovelace -> TxFee era

deriving instance Eq   (TxFee era)
deriving instance Show (TxFee era)