@@ -500,30 +500,43 @@ mint' :: AlonzoTxBody era -> MultiAsset
500500scriptIntegrityHash' :: AlonzoTxBody era -> StrictMaybe ScriptIntegrityHash
501501txnetworkid' :: AlonzoTxBody era -> StrictMaybe Network
502502inputs' = atbrInputs . getMemoRawType
503+ {-# DEPRECATED inputs' "In favor of inputsTxBodyL" #-}
503504
504505collateral' = atbrCollateral . getMemoRawType
506+ {-# DEPRECATED collateral' "In favor of collateralInputsTxBodyL" #-}
505507
506508outputs' = atbrOutputs . getMemoRawType
509+ {-# DEPRECATED outputs' "In favor of outputsTxBodyL" #-}
507510
508511certs' = atbrCerts . getMemoRawType
512+ {-# DEPRECATED certs' "In favor of certsTxBodyL" #-}
509513
510514withdrawals' = atbrWithdrawals . getMemoRawType
515+ {-# DEPRECATED withdrawals' "In favor of withdrawalsTxBodyL" #-}
511516
512517txfee' = atbrTxFee . getMemoRawType
518+ {-# DEPRECATED txfee' "In favor of feeTxBodyL" #-}
513519
514520vldt' = atbrValidityInterval . getMemoRawType
521+ {-# DEPRECATED vldt' "In favor of vldtTxBodyL" #-}
515522
516523update' = atbrUpdate . getMemoRawType
524+ {-# DEPRECATED update' "In favor of updateTxBodyL" #-}
517525
518526reqSignerHashes' = atbrReqSignerHashes . getMemoRawType
527+ {-# DEPRECATED reqSignerHashes' "In favor of reqSignerHashesTxBodyL" #-}
519528
520529adHash' = atbrAuxDataHash . getMemoRawType
530+ {-# DEPRECATED adHash' "In favor of auxDataHashTxBodyL" #-}
521531
522532mint' = atbrMint . getMemoRawType
533+ {-# DEPRECATED mint' "In favor of mintTxBodyL" #-}
523534
524535scriptIntegrityHash' = atbrScriptIntegrityHash . getMemoRawType
536+ {-# DEPRECATED scriptIntegrityHash' "In favor of scriptIntegrityHashTxBodyL" #-}
525537
526538txnetworkid' = atbrTxNetworkId . getMemoRawType
539+ {-# DEPRECATED txnetworkid' "In favor of networkIdTxBodyL" #-}
527540
528541instance
529542 (Era era , Eq (PParamsUpdate era ), Eq (TxOut era ), Eq (TxCert era )) =>
0 commit comments