@@ -500,30 +500,43 @@ mint' :: AlonzoTxBody era -> MultiAsset
500
500
scriptIntegrityHash' :: AlonzoTxBody era -> StrictMaybe ScriptIntegrityHash
501
501
txnetworkid' :: AlonzoTxBody era -> StrictMaybe Network
502
502
inputs' = atbrInputs . getMemoRawType
503
+ {-# DEPRECATED inputs' "In favor of inputsTxBodyL" #-}
503
504
504
505
collateral' = atbrCollateral . getMemoRawType
506
+ {-# DEPRECATED collateral' "In favor of collateralInputsTxBodyL" #-}
505
507
506
508
outputs' = atbrOutputs . getMemoRawType
509
+ {-# DEPRECATED outputs' "In favor of outputsTxBodyL" #-}
507
510
508
511
certs' = atbrCerts . getMemoRawType
512
+ {-# DEPRECATED certs' "In favor of certsTxBodyL" #-}
509
513
510
514
withdrawals' = atbrWithdrawals . getMemoRawType
515
+ {-# DEPRECATED withdrawals' "In favor of withdrawalsTxBodyL" #-}
511
516
512
517
txfee' = atbrTxFee . getMemoRawType
518
+ {-# DEPRECATED txfee' "In favor of feeTxBodyL" #-}
513
519
514
520
vldt' = atbrValidityInterval . getMemoRawType
521
+ {-# DEPRECATED vldt' "In favor of vldtTxBodyL" #-}
515
522
516
523
update' = atbrUpdate . getMemoRawType
524
+ {-# DEPRECATED update' "In favor of updateTxBodyL" #-}
517
525
518
526
reqSignerHashes' = atbrReqSignerHashes . getMemoRawType
527
+ {-# DEPRECATED reqSignerHashes' "In favor of reqSignerHashesTxBodyL" #-}
519
528
520
529
adHash' = atbrAuxDataHash . getMemoRawType
530
+ {-# DEPRECATED adHash' "In favor of auxDataHashTxBodyL" #-}
521
531
522
532
mint' = atbrMint . getMemoRawType
533
+ {-# DEPRECATED mint' "In favor of mintTxBodyL" #-}
523
534
524
535
scriptIntegrityHash' = atbrScriptIntegrityHash . getMemoRawType
536
+ {-# DEPRECATED scriptIntegrityHash' "In favor of scriptIntegrityHashTxBodyL" #-}
525
537
526
538
txnetworkid' = atbrTxNetworkId . getMemoRawType
539
+ {-# DEPRECATED txnetworkid' "In favor of networkIdTxBodyL" #-}
527
540
528
541
instance
529
542
(Era era , Eq (PParamsUpdate era ), Eq (TxOut era ), Eq (TxCert era )) =>
0 commit comments