We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ce210b commit 157cf37Copy full SHA for 157cf37
stackslib/src/chainstate/stacks/miner.rs
@@ -1053,7 +1053,7 @@ impl<'a> StacksMicroblockBuilder<'a> {
1053
1054
let quiet = !cfg!(test);
1055
match StacksChainState::process_transaction(clarity_tx, &tx, quiet, ast_rules) {
1056
- Ok((fee, receipt)) => Ok(TransactionResult::success(&tx, receipt)),
+ Ok((_fee, receipt)) => Ok(TransactionResult::success(&tx, receipt)),
1057
Err(e) => {
1058
let (is_problematic, e) =
1059
TransactionResult::is_problematic(&tx, e, clarity_tx.get_epoch());
0 commit comments