File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
libs/cardano-ledger-conformance/src/Test/Cardano/Ledger/Conformance/SpecTranslate Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ instance
230230 ppPv = (0 , 0 )
231231 ppMinUTxOValue = 0 -- minUTxOValue has been deprecated and is not supported in Conway
232232 ppCoinsPerUTxOByte <- toSpecRep cppCoinsPerUTxOByte
233- ppCostmdls <- toSpecRep cppCostModels
233+ ppCostmdlsAssoc <- toSpecRep cppCostModels
234234 ppPrices <- toSpecRep cppPrices
235235 let
236236 pp = PParams cpp
Original file line number Diff line number Diff line change @@ -156,9 +156,9 @@ instance SpecTranslate ctx ProtVer where
156156 toSpecRep (ProtVer ver minor) = pure (getVersion ver, toInteger minor)
157157
158158instance SpecTranslate ctx CostModels where
159- type SpecRep CostModels = ()
159+ type SpecRep CostModels = [( () , () )]
160160
161- toSpecRep _ = pure ()
161+ toSpecRep _ = pure [( () , () )]
162162
163163instance SpecTranslate ctx Prices where
164164 type SpecRep Prices = ()
You can’t perform that action at this time.
0 commit comments