@@ -272,7 +272,7 @@ import Cardano.Crypto.Hashing qualified as Byron
272
272
import Cardano.Ledger.Allegra.Core qualified as L
273
273
import Cardano.Ledger.Alonzo.Core qualified as L
274
274
import Cardano.Ledger.Alonzo.Scripts qualified as Alonzo
275
- import Cardano.Ledger.Alonzo.Tx qualified as Alonzo (hashScriptIntegrity )
275
+ -- import Cardano.Ledger.Alonzo.Tx qualified as Alonzo (hashScriptIntegrity)
276
276
import Cardano.Ledger.Alonzo.TxWits qualified as Alonzo
277
277
import Cardano.Ledger.Api qualified as L
278
278
import Cardano.Ledger.Babbage.UTxO qualified as L
@@ -1739,14 +1739,14 @@ fromLedgerTxExtraKeyWitnesses sbe body =
1739
1739
caseShelleyToMaryOrAlonzoEraOnwards
1740
1740
(const TxExtraKeyWitnessesNone )
1741
1741
( \ w ->
1742
- let keyhashes = body ^. L. reqSignerHashesTxBodyL
1742
+ let keyhashes = body ^. L. reqSignerHashesTxBodyG
1743
1743
in if Set. null keyhashes
1744
1744
then TxExtraKeyWitnessesNone
1745
1745
else
1746
1746
TxExtraKeyWitnesses
1747
1747
w
1748
1748
[ PaymentKeyHash (Shelley. coerceKeyRole keyhash)
1749
- | keyhash <- toList $ body ^. L. reqSignerHashesTxBodyL
1749
+ | keyhash <- toList $ body ^. L. reqSignerHashesTxBodyG
1750
1750
]
1751
1751
)
1752
1752
sbe
@@ -1981,12 +1981,13 @@ convPParamsToScriptIntegrityHash
1981
1981
-> Alonzo. TxDats (ShelleyLedgerEra era )
1982
1982
-> Set Plutus. Language
1983
1983
-> StrictMaybe L. ScriptIntegrityHash
1984
- convPParamsToScriptIntegrityHash w (BuildTxWith mTxProtocolParams) redeemers datums languages =
1984
+ convPParamsToScriptIntegrityHash w (BuildTxWith mTxProtocolParams) _ _ _ = -- redeemers datums languages =
1985
1985
alonzoEraOnwardsConstraints w $
1986
1986
case mTxProtocolParams of
1987
1987
Nothing -> SNothing
1988
- Just (LedgerProtocolParameters pp) ->
1989
- Alonzo. hashScriptIntegrity (Set. map (L. getLanguageView pp) languages) redeemers datums
1988
+ Just (LedgerProtocolParameters _) -> undefined
1989
+ -- Just (LedgerProtocolParameters pp) ->
1990
+ -- Alonzo.hashScriptIntegrity (Set.map (L.getLanguageView pp) languages) redeemers datums
1990
1991
1991
1992
convLanguages :: [(ScriptWitnessIndex , AnyScriptWitness era )] -> Set Plutus. Language
1992
1993
convLanguages witnesses =
0 commit comments