Skip to content

Commit a1f85cd

Browse files
committed
kevm-pyk/__main__: call sanitize_config on output of get_claim_basic_block
1 parent 7e48576 commit a1f85cd

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
@@ -389,7 +389,7 @@ def prove_it(id_and_cfg: Tuple[str, Tuple[KCFG, Path]]) -> bool:
389389
f'Target state reached at depth {depth}, inserted edge from {shorten_hashes((curr_node.id))} to {shorten_hashes((target_node.id))}.'
390390
)
391391

392-
next_state = CTerm(result)
392+
next_state = CTerm(sanitize_config(foundry.definition, result))
393393
next_node = cfg.get_or_create_node(next_state)
394394
if next_node != curr_node:
395395
_LOGGER.info(f'Found basic block at depth {depth}: {shorten_hashes((curr_node.id, next_node.id))}.')

0 commit comments

Comments
 (0)