@@ -272,7 +272,7 @@ import Cardano.Crypto.Hashing qualified as Byron
272272import Cardano.Ledger.Allegra.Core qualified as L
273273import Cardano.Ledger.Alonzo.Core qualified as L
274274import 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)
276276import Cardano.Ledger.Alonzo.TxWits qualified as Alonzo
277277import Cardano.Ledger.Api qualified as L
278278import Cardano.Ledger.Babbage.UTxO qualified as L
@@ -1739,14 +1739,14 @@ fromLedgerTxExtraKeyWitnesses sbe body =
17391739 caseShelleyToMaryOrAlonzoEraOnwards
17401740 (const TxExtraKeyWitnessesNone )
17411741 ( \ w ->
1742- let keyhashes = body ^. L. reqSignerHashesTxBodyL
1742+ let keyhashes = body ^. L. reqSignerHashesTxBodyG
17431743 in if Set. null keyhashes
17441744 then TxExtraKeyWitnessesNone
17451745 else
17461746 TxExtraKeyWitnesses
17471747 w
17481748 [ PaymentKeyHash (Shelley. coerceKeyRole keyhash)
1749- | keyhash <- toList $ body ^. L. reqSignerHashesTxBodyL
1749+ | keyhash <- toList $ body ^. L. reqSignerHashesTxBodyG
17501750 ]
17511751 )
17521752 sbe
@@ -1981,12 +1981,13 @@ convPParamsToScriptIntegrityHash
19811981 -> Alonzo. TxDats (ShelleyLedgerEra era )
19821982 -> Set Plutus. Language
19831983 -> StrictMaybe L. ScriptIntegrityHash
1984- convPParamsToScriptIntegrityHash w (BuildTxWith mTxProtocolParams) redeemers datums languages =
1984+ convPParamsToScriptIntegrityHash w (BuildTxWith mTxProtocolParams) _ _ _ = -- redeemers datums languages =
19851985 alonzoEraOnwardsConstraints w $
19861986 case mTxProtocolParams of
19871987 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
19901991
19911992convLanguages :: [(ScriptWitnessIndex , AnyScriptWitness era )] -> Set Plutus. Language
19921993convLanguages witnesses =
0 commit comments