File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -782,7 +782,7 @@ impl Signer {
782
782
warn ! ( "{self}: Failed to mark block as globally rejected: {e:?}" , ) ;
783
783
}
784
784
if let Err ( e) = self . signer_db . insert_block ( & block_info) {
785
- warn ! ( "{self}: Failed to update block state: {e:?}" , ) ;
785
+ error ! ( "{self}: Failed to update block state: {e:?}" , ) ;
786
786
panic ! ( "{self} Failed to update block state: {e}" ) ;
787
787
}
788
788
}
Original file line number Diff line number Diff line change @@ -239,12 +239,13 @@ impl SignerTrait<SignerMessage> for Signer {
239
239
self . signer_db
240
240
. insert_burn_block ( burn_header_hash, * burn_height, received_time)
241
241
{
242
- warn ! (
242
+ error ! (
243
243
"Failed to write burn block event to signerdb" ;
244
244
"err" => ?e,
245
245
"burn_header_hash" => %burn_header_hash,
246
246
"burn_height" => burn_height
247
247
) ;
248
+ panic ! ( "Failed to write burn block event to signerdb" ) ;
248
249
}
249
250
}
250
251
}
You can’t perform that action at this time.
0 commit comments