Skip to content

Commit e1c033d

Browse files
committed
wip
1 parent e366a0d commit e1c033d

File tree

1 file changed

+2
-1
lines changed
  • plutus-core/untyped-plutus-core/src/UntypedPlutusCore/Evaluation/Machine/Cek

1 file changed

+2
-1
lines changed

plutus-core/untyped-plutus-core/src/UntypedPlutusCore/Evaluation/Machine/Cek/Internal.hs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,8 @@ enterComputeCek = computeCek
894894
-- s , [_ V1 .. Vn] ◅ lam x (M,ρ) ↦ s , [_ V2 .. Vn]; ρ [ x ↦ V1 ] ▻ M
895895
returnCek (FrameMine args ctx) l =
896896
case l of
897-
VLet _ body env -> computeCek ctx (foldr Env.cons env args) body
897+
VLet names body env
898+
| length names == length args -> computeCek ctx (foldr Env.cons env args) body
898899
_ -> error "no"
899900

900901
returnCek (FrameAwaitFunValueN args ctx) fun =

0 commit comments

Comments
 (0)