@@ -291,7 +291,7 @@ impl SignerTrait<SignerMessage> for Signer {
291
291
} => {
292
292
debug ! (
293
293
"{self}: Received a new block event." ;
294
- "block_hash " => %block_hash,
294
+ "signer_signature_hash " => %block_hash,
295
295
"block_height" => block_height
296
296
) ;
297
297
if let Ok ( Some ( mut block_info) ) = self
@@ -661,7 +661,7 @@ impl Signer {
661
661
// We are still waiting for a response for this block. Do nothing.
662
662
debug ! (
663
663
"{self}: Received a block proposal for a block we are already validating." ;
664
- "signer_sighash " => %block_info. signer_signature_hash( ) ,
664
+ "signer_signature_hash " => %block_info. signer_signature_hash( ) ,
665
665
"block_id" => %block_info. block. block_id( )
666
666
) ;
667
667
return ;
@@ -1117,7 +1117,7 @@ impl Signer {
1117
1117
// recover public key
1118
1118
let Ok ( public_key) = rejection. recover_public_key ( ) else {
1119
1119
debug ! ( "{self}: Received block rejection with an unrecovarable signature. Will not store." ;
1120
- "block_hash " => %block_hash,
1120
+ "signer_signature_hash " => %block_hash,
1121
1121
"signature" => %signature
1122
1122
) ;
1123
1123
return ;
@@ -1133,7 +1133,7 @@ impl Signer {
1133
1133
1134
1134
if !is_valid_sig {
1135
1135
debug ! ( "{self}: Receive block rejection with an invalid signature. Will not store." ;
1136
- "block_hash " => %block_hash,
1136
+ "signer_signature_hash " => %block_hash,
1137
1137
"signature" => %signature
1138
1138
) ;
1139
1139
return ;
@@ -1235,7 +1235,7 @@ impl Signer {
1235
1235
else {
1236
1236
debug ! ( "{self}: Received unrecovarable signature. Will not store." ;
1237
1237
"signature" => %signature,
1238
- "block_hash " => %block_hash) ;
1238
+ "signer_signature_hash " => %block_hash) ;
1239
1239
1240
1240
return ;
1241
1241
} ;
0 commit comments