bumped Plutus dependency

This commit is contained in:
Lars Brünjes 2021-05-25 21:31:41 +02:00
parent d3af622a71
commit b55dde066d
No known key found for this signature in database
GPG key ID: B488B9045DC1A087
3 changed files with 3 additions and 2 deletions

View file

@ -25,7 +25,7 @@ source-repository-package
plutus-use-cases
prettyprinter-configurable
quickcheck-dynamic
tag: b1894eb48d3d9c9b7acd83dd39f27b6b01d4a09e
tag: ae35c4b8fe66dd626679bd2951bd72190e09a123
-- The following sections are copied from the 'plutus' repository cabal.project at the revision
-- given above.

View file

@ -38,7 +38,7 @@ import Ledger.Ada as Ada
import Ledger.Constraints as Constraints
import qualified Ledger.Typed.Scripts as Scripts
import Ledger.Value
import Prelude (Semigroup (..))
import Prelude (Semigroup (..), Show (..), uncurry)
import qualified Prelude
data TokenSale = TokenSale

View file

@ -24,6 +24,7 @@ import Ledger.Value
import Ledger.Ada as Ada
import Plutus.Trace.Emulator as Emulator
import PlutusTx.Prelude
import Prelude (IO, String, Show (..))
import Wallet.Emulator.Wallet
import Week08.TokenSale