Skip to content

Commit de5d300

Browse files
committed
kevm-pyk/__main__: correct variable names
1 parent 83fd11b commit de5d300

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kevm-pyk/src/kevm_pyk/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def prove_it(_id_and_cfg: Tuple[str, Tuple[KCFG, Path]]) -> bool:
382382
result_state = minimize_term(result_state)
383383
_LOGGER.error(f'Proof failed: {_cfg_id}\n{foundry.pretty_print(result_state)}')
384384
_write_cfg(_cfg, _cfg_path)
385-
failure_nodes = cfg.frontier + cfg.stuck
385+
failure_nodes = _cfg.frontier + _cfg.stuck
386386
return len(failure_nodes) == 0
387387

388388
with ProcessPool(ncpus=workers) as process_pool:

0 commit comments

Comments
 (0)