IntersectMBO/plutus
Ver no GitHub`dischargeCekValue` doesn't handle open terms correctly
Open
#7.526 aberto em 15 de jan. de 2026
Good first issuebugstatus: triaged
Métricas do repositório
- Stars
- (1.637 stars)
- Métricas de merge de PR
- (Mesclagem média 15d 11h) (13 fundiu PRs em 30d)
Description
dischargeCekValue has the following code:
-- var is free, leave it alone
(Var () named)
which means that
(\0 \0 var 2) (delay (var 1))
evaluates to
[1 :-> delay (var 1)] (\0 var 2)
which then discharges to
\0 delay (var 1)
which is variable capture.