Skip to content

Commit b5023ef

Browse files
committed
kevm-pyk/__main__: call sanitize_config on output of get_claim_basic_block
1 parent a56e5c3 commit b5023ef

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

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

0 commit comments

Comments
 (0)