IntersectMBO/plutus
Vedi su GitHub`dischargeCekValue` doesn't handle open terms correctly
Open
#7526 aperta il 15 gen 2026
Good first issuebugstatus: triaged
Metriche repository
- Star
- (1637 star)
- Metriche merge PR
- (Merge medio 15g 11h) (13 PR mergiate in 30 g)
Descrizione
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.