File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
testnet/stacks-node/src/nakamoto_node Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -1406,6 +1406,8 @@ impl BlockMinerThread {
1406
1406
sortdb : & SortitionDB ,
1407
1407
chain_state : & mut StacksChainState ,
1408
1408
) -> Result < ( ) , NakamotoNodeError > {
1409
+ // BlockMinerThread::check_burn_view_changed(sortdb, chain_state, &self.burn_block)?;
1410
+
1409
1411
if let MinerReason :: BlockFound { late } = & self . reason {
1410
1412
if * late && self . last_block_mined . is_none ( ) {
1411
1413
// this is a late BlockFound tenure change that ought to be appended to the Stacks
Original file line number Diff line number Diff line change @@ -371,10 +371,12 @@ impl SignerCoordinator {
371
371
chain_state : & mut StacksChainState ,
372
372
burn_block : & BlockSnapshot ,
373
373
) -> bool {
374
+ /*
374
375
if BlockMinerThread::check_burn_view_changed(sortdb, chain_state, burn_block).is_err() {
375
376
// can't continue mining -- burn view changed, or a DB error occurred
376
377
return true;
377
378
}
379
+ */
378
380
379
381
let cur_burn_chain_tip = SortitionDB :: get_canonical_burn_chain_tip ( sortdb. conn ( ) )
380
382
. expect ( "FATAL: failed to query sortition DB for canonical burn chain tip" ) ;
You can’t perform that action at this time.
0 commit comments