Skip to content

Commit 9b9b371

Browse files
committed
fix: rename to analysis
1 parent 4962692 commit 9b9b371

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stackslib/src/clarity_cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1669,7 +1669,7 @@ pub fn invoke_command_with_db(
16691669
run_analysis(&contract_identifier, &mut ast, &header_db, &mut marf, true);
16701670
match analysis_result {
16711671
Err(e) => (header_db, marf, Err(e)),
1672-
Ok(contract_analysis) => {
1672+
Ok(analysis) => {
16731673
let result_and_cost = with_env_costs(
16741674
mainnet,
16751675
&header_db,
@@ -1688,7 +1688,7 @@ pub fn invoke_command_with_db(
16881688
},
16891689
);
16901690
let (result, cost) = result_and_cost;
1691-
(header_db, marf, Ok((contract_analysis, (result, cost))))
1691+
(header_db, marf, Ok((analysis, (result, cost))))
16921692
}
16931693
}
16941694
});

0 commit comments

Comments
 (0)