File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -758,7 +758,7 @@ impl<
758
758
match self . handle_new_nakamoto_burnchain_block ( ) {
759
759
Ok ( can_proceed) => {
760
760
if !can_proceed {
761
- error ! ( "Missing canonical anchor block" , ) ;
761
+ error ! ( "Missing canonical anchor block" ) ;
762
762
}
763
763
}
764
764
Err ( e) => {
Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ pub fn signal_mining_blocked(miner_status: Arc<Mutex<MinerStatus>>) {
133
133
134
134
/// resume mining if we blocked it earlier
135
135
pub fn signal_mining_ready ( miner_status : Arc < Mutex < MinerStatus > > ) {
136
+ debug ! ( "Signaling miner to resume" ; "thread_id" => ?std:: thread:: current( ) . id( ) ) ;
136
137
match miner_status. lock ( ) {
137
138
Ok ( mut status) => {
138
139
status. remove_blocked ( ) ;
You can’t perform that action at this time.
0 commit comments