Skip to content

Commit

Permalink
plutus: 1.30 -> 1.31
Browse files Browse the repository at this point in the history
  • Loading branch information
locallycompact committed Sep 7, 2024
1 parent 57f5fb0 commit 73c1aa6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
1 change: 1 addition & 0 deletions cabal.project
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ benchmarks: True
test-show-details: direct

allow-newer: base
allow-newer: plutus-ledger-api
2 changes: 1 addition & 1 deletion hydra-cardano-api/hydra-cardano-api.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ library
, base >=4.16
, base16-bytestring
, bytestring
, cardano-api ^>=9.1
, cardano-api ^>=9.2
, cardano-binary
, cardano-crypto-class
, cardano-ledger-allegra
Expand Down
10 changes: 5 additions & 5 deletions hydra-cardano-api/src/Hydra/Cardano/Api.hs
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ type TxBodyContent buidl = Cardano.Api.TxBodyContent buidl Era
pattern TxBodyContent ::
TxIns buidl ->
TxInsCollateral ->
TxInsReference buidl ->
TxInsReference ->
[TxOut CtxTx] ->
TxTotalCollateral Era ->
TxReturnCollateral CtxTx Era ->
Expand All @@ -404,7 +404,7 @@ pattern TxBodyContent ::
TxScriptValidity ->
Maybe (Featured ConwayEraOnwards Era (TxProposalProcedures buidl Era)) ->
Maybe (Featured ConwayEraOnwards Era (TxVotingProcedures buidl Era)) ->
Maybe (Featured ConwayEraOnwards Era Coin) ->
Maybe (Featured ConwayEraOnwards Era (Maybe Coin)) ->
Maybe (Featured ConwayEraOnwards Era Coin) ->
TxBodyContent buidl
pattern TxBodyContent
Expand Down Expand Up @@ -515,17 +515,17 @@ type TxIns buidl = [(TxIn, BuildTxWith buidl (Cardano.Api.Witness WitCtxTxIn Era

-- ** TxInsReference

type TxInsReference buidl = Cardano.Api.TxInsReference buidl Era
type TxInsReference = Cardano.Api.TxInsReference Era
{-# COMPLETE TxInsReferenceNone, TxInsReference #-}

pattern TxInsReferenceNone :: TxInsReference buidl
pattern TxInsReferenceNone :: TxInsReference
pattern TxInsReferenceNone <-
Cardano.Api.TxInsReferenceNone
where
TxInsReferenceNone =
Cardano.Api.TxInsReferenceNone

pattern TxInsReference :: [TxIn] -> TxInsReference buidl
pattern TxInsReference :: [TxIn] -> TxInsReference
pattern TxInsReference{txInsReference'} <-
Cardano.Api.TxInsReference _ txInsReference'
where
Expand Down
8 changes: 4 additions & 4 deletions hydra-plutus/hydra-plutus.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ library
, hydra-cardano-api
, hydra-plutus-extras
, hydra-prelude
, plutus-core >=1.21
, plutus-ledger-api >=1.21
, plutus-tx >=1.21
, plutus-tx-plugin >=1.21
, plutus-core >=1.31
, plutus-ledger-api >=1.31
, plutus-tx >=1.31
, plutus-tx-plugin >=1.31
, QuickCheck
, serialise
, template-haskell
Expand Down

0 comments on commit 73c1aa6

Please sign in to comment.