Skip to content

Commit

Permalink
That's an unfortunate call
Browse files Browse the repository at this point in the history
  • Loading branch information
effectfully committed Apr 13, 2022
1 parent c721203 commit c00a346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plutus-benchmark/validation/Common.hs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ type Term = UPLC.Term UPLC.DeBruijn UPLC.DefaultUni UPLC.DefaultFun ()
peelDataArguments :: Term -> (Term, [PLC.Data])
peelDataArguments = go []
where
go acc t@(UPLC.Apply () t' arg) = case PLC.readKnown Nothing arg of
go acc t@(UPLC.Apply () t' arg) = case PLC.readKnown @UPLC.DefaultUni Nothing arg of
Left _ -> (t, acc)
Right d -> go (d:acc) t'
go acc t = (t, acc)
Expand Down

0 comments on commit c00a346

Please sign in to comment.