File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -193,10 +193,18 @@ impl SortitionsView {
193
193
. cur_sortition
194
194
. is_timed_out ( self . config . block_proposal_timeout , signer_db) ?
195
195
{
196
+ info ! (
197
+ "Current miner timed out, marking as invalid." ;
198
+ "current_sortition_consensus_hash" => ?self . cur_sortition. consensus_hash,
199
+ ) ;
196
200
self . cur_sortition . miner_status = SortitionMinerStatus :: InvalidatedBeforeFirstBlock ;
197
201
}
198
202
if let Some ( last_sortition) = self . last_sortition . as_mut ( ) {
199
203
if last_sortition. is_timed_out ( self . config . block_proposal_timeout , signer_db) ? {
204
+ info ! (
205
+ "Last miner timed out, marking as invalid." ;
206
+ "last_sortition_consensus_hash" => ?last_sortition. consensus_hash,
207
+ ) ;
200
208
last_sortition. miner_status = SortitionMinerStatus :: InvalidatedBeforeFirstBlock ;
201
209
}
202
210
}
Original file line number Diff line number Diff line change @@ -353,6 +353,7 @@ impl Signer {
353
353
"{self}: received a block proposal for a new block. Submit block for validation. " ;
354
354
"signer_sighash" => %signer_signature_hash,
355
355
"block_id" => %block_proposal. block. block_id( ) ,
356
+ "burn_height" => block_proposal. burn_height,
356
357
) ;
357
358
crate :: monitoring:: increment_block_proposals_received ( ) ;
358
359
let mut block_info = BlockInfo :: from ( block_proposal. clone ( ) ) ;
You can’t perform that action at this time.
0 commit comments