File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
testnet/stacks-node/src/nakamoto_node Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -453,6 +453,7 @@ impl RelayerThread {
453
453
increment_stx_blocks_mined_counter ( ) ;
454
454
}
455
455
self . globals . set_last_sortition ( sn. clone ( ) ) ;
456
+ self . globals . counters . bump_blocks_processed ( ) ;
456
457
457
458
// there may be a bufferred stacks block to process, so wake up the coordinator to check
458
459
self . globals . coord_comms . announce_new_stacks_block ( ) ;
@@ -812,10 +813,7 @@ impl RelayerThread {
812
813
) ?;
813
814
814
815
let new_miner_handle = std:: thread:: Builder :: new ( )
815
- . name ( format ! (
816
- "miner.{parent_tenure_start} (bound ({},{})" ,
817
- & self . config. node. p2p_bind, & self . config. node. rpc_bind
818
- ) )
816
+ . name ( format ! ( "miner.{parent_tenure_start}" , ) )
819
817
. stack_size ( BLOCK_PROCESSOR_STACK_SIZE )
820
818
. spawn ( move || new_miner_state. run_miner ( prior_tenure_thread) )
821
819
. map_err ( |e| {
You can’t perform that action at this time.
0 commit comments