Skip to content

Commit

Permalink
Merge pull request #17 from input-output-hk/PR-hotfix
Browse files Browse the repository at this point in the history
One more hotfix
  • Loading branch information
MaximilianAlgehed authored Apr 21, 2023
2 parents 236a046 + 17d7859 commit 11fbbf4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ module Test.QuickCheck.ContractModel
, viewModelState
, viewContractState
, createToken
, createTxOut
, mint
, burn
, deposit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,10 @@ createToken key = Spec $ do
Writer.tell $ createIndex @AssetId key
pure $ Symbolic var key

-- | Create a new symbolic token in `nextState` - must have a
-- corresponding `registerToken` call in `perform`
createSymUTxO :: String -> Spec state SymTxOut
createSymUTxO key = Spec $ do
-- | Create a new symbolic TxOut in `nextState` - must have a
-- corresponding `registerTxOut` call in `perform`
createTxOut :: String -> Spec state SymTxOut
createTxOut key = Spec $ do
var <- ask
Writer.tell $ createIndex @(TxOut CtxUTxO Era) key
pure $ Symbolic var key
Expand Down

0 comments on commit 11fbbf4

Please sign in to comment.