@@ -153,7 +153,7 @@ impl SignerTrait<SignerMessage> for Signer {
153
153
burn_header_hash,
154
154
received_time,
155
155
} => {
156
- info ! ( "{self}: Receved a new burn block event for block height {burn_height}" ) ;
156
+ info ! ( "{self}: Received a new burn block event for block height {burn_height}" ) ;
157
157
if let Err ( e) =
158
158
self . signer_db
159
159
. insert_burn_block ( burn_header_hash, * burn_height, received_time)
@@ -251,7 +251,7 @@ impl Signer {
251
251
block_proposal : & BlockProposal ,
252
252
miner_pubkey : & Secp256k1PublicKey ,
253
253
) {
254
- info ! ( "{self}: Received a block proposal: {block_proposal:?}" ) ;
254
+ debug ! ( "{self}: Received a block proposal: {block_proposal:?}" ) ;
255
255
if block_proposal. reward_cycle != self . reward_cycle {
256
256
// We are not signing for this reward cycle. Ignore the block.
257
257
debug ! (
@@ -388,7 +388,7 @@ impl Signer {
388
388
389
389
/// Handle the block validate response returned from our prior calls to submit a block for validation
390
390
fn handle_block_validate_response ( & mut self , block_validate_response : & BlockValidateResponse ) {
391
- info ! ( "{self}: Received a block validate response: {block_validate_response:?}" ) ;
391
+ debug ! ( "{self}: Received a block validate response: {block_validate_response:?}" ) ;
392
392
let ( response, block_info) = match block_validate_response {
393
393
BlockValidateResponse :: Ok ( block_validate_ok) => {
394
394
crate :: monitoring:: increment_block_validation_responses ( true ) ;
0 commit comments