Skip to content

Commit 157cf37

Browse files
committed
refactor: mark fee variabile as unused, #5900
1 parent 8ce210b commit 157cf37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stackslib/src/chainstate/stacks/miner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ impl<'a> StacksMicroblockBuilder<'a> {
10531053

10541054
let quiet = !cfg!(test);
10551055
match StacksChainState::process_transaction(clarity_tx, &tx, quiet, ast_rules) {
1056-
Ok((fee, receipt)) => Ok(TransactionResult::success(&tx, receipt)),
1056+
Ok((_fee, receipt)) => Ok(TransactionResult::success(&tx, receipt)),
10571057
Err(e) => {
10581058
let (is_problematic, e) =
10591059
TransactionResult::is_problematic(&tx, e, clarity_tx.get_epoch());

0 commit comments

Comments
 (0)