Skip to content

Commit 15234e8

Browse files
authored
chore: make SourceData::contract_definitions public (#12058)
1 parent 57ba088 commit 15234e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/evm/traces/src/debug/sources.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub struct SourceData {
2626
pub path: PathBuf,
2727
/// Maps contract name to (start, end) of the contract definition in the source code.
2828
/// This is useful for determining which contract contains given function definition.
29-
contract_definitions: Vec<(String, Range<usize>)>,
29+
pub contract_definitions: Vec<(String, Range<usize>)>,
3030
}
3131

3232
impl SourceData {

0 commit comments

Comments
 (0)