Skip to content

Commit

Permalink
fix: add solc artifacts to known contracts for traces (#572)
Browse files Browse the repository at this point in the history
add solc artifacts to known contracts for traces
  • Loading branch information
nbaztec committed Sep 13, 2024
1 parent b6f29ca commit 25b306f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions crates/forge/src/multi_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,12 @@ impl MultiContractRunnerBuilder {
warn!("Abi not found for contract {}", id.identifier());
}
}

// Extend zk contracts with solc contracts as well. This is required for traces to
// accurately detect contract names deployed in EVM mode, and when using
// `vm.zkVmSkip()` cheatcode.
zk_contracts_map.extend(linked_contracts);

known_contracts = ContractsByArtifact::new(zk_contracts_map);
}

Expand Down

0 comments on commit 25b306f

Please sign in to comment.