Skip to content

Commit 8e9303a

Browse files
committed
fix: remove compile warnings that prevent CI from running
1 parent a6a42cf commit 8e9303a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

testnet/stacks-node/src/nakamoto_node/miner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1404,7 +1404,7 @@ impl BlockMinerThread {
14041404
fn check_burn_tip_changed(
14051405
&self,
14061406
sortdb: &SortitionDB,
1407-
chain_state: &mut StacksChainState,
1407+
_chain_state: &mut StacksChainState,
14081408
) -> Result<(), NakamotoNodeError> {
14091409
// BlockMinerThread::check_burn_view_changed(sortdb, chain_state, &self.burn_block)?;
14101410

testnet/stacks-node/src/nakamoto_node/signer_coordinator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ use stacks::util_lib::boot::boot_code_id;
3737
use super::stackerdb_listener::StackerDBListenerComms;
3838
use super::Error as NakamotoNodeError;
3939
use crate::event_dispatcher::StackerDBChannel;
40-
use crate::nakamoto_node::miner::BlockMinerThread;
40+
// use crate::nakamoto_node::miner::BlockMinerThread;
4141
use crate::nakamoto_node::stackerdb_listener::{StackerDBListener, EVENT_RECEIVER_POLL};
4242
use crate::neon::Counters;
4343
use crate::Config;
@@ -368,7 +368,7 @@ impl SignerCoordinator {
368368
/// Check if the tenure needs to change
369369
fn check_burn_tip_changed(
370370
sortdb: &SortitionDB,
371-
chain_state: &mut StacksChainState,
371+
_chain_state: &mut StacksChainState,
372372
burn_block: &BlockSnapshot,
373373
) -> bool {
374374
/*

0 commit comments

Comments
 (0)