File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
eras/allegra/impl/src/Cardano/Ledger/Allegra Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,12 @@ deriving instance Eq (NativeScript era) => Eq (AllegraTxAuxDataRaw era)
8787
8888class EraTxAuxData era => AllegraEraTxAuxData era where
8989 nativeScriptsTxAuxDataL :: Lens' (TxAuxData era ) (StrictSeq (NativeScript era ))
90+
91+ timelockScriptsTxAuxDataL :: Lens' (TxAuxData era ) (StrictSeq (Timelock era ))
92+ default timelockScriptsTxAuxDataL :: NativeScript era ~ Timelock era => Lens' (TxAuxData era ) (StrictSeq (Timelock era ))
93+ timelockScriptsTxAuxDataL = nativeScriptsTxAuxDataL
94+
95+ {-# DEPRECATED timelockScriptsTxAuxDataL "In favor of `nativeScriptsTxAuxDataL`" #-}
9096
9197instance EraTxAuxData AllegraEra where
9298 type TxAuxData AllegraEra = AllegraTxAuxData AllegraEra
You can’t perform that action at this time.
0 commit comments