Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
don't log error on missing validator keys (#157)
Browse files Browse the repository at this point in the history
* don't log error on missing validator keys

* remove unused import
  • Loading branch information
andresilva authored Apr 20, 2021
1 parent 2e9b4bf commit 6b6a467
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/beefy/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use std::{
use codec::{Codec, Decode, Encode};
use futures::{future, FutureExt, StreamExt};
use hex::ToHex;
use log::{debug, error, info, trace, warn};
use log::{debug, error, trace, warn};
use parking_lot::Mutex;

use sc_client_api::{Backend, FinalityNotification, FinalityNotifications};
Expand Down Expand Up @@ -249,7 +249,7 @@ where
let local_id = if let Some(id) = self.local_id() {
id
} else {
error!(target: "beefy", "🥩 Missing validator id - can't vote for: {:?}", notification.header.hash());
debug!(target: "beefy", "🥩 Missing validator id - can't vote for: {:?}", notification.header.hash());
return;
};

Expand Down

0 comments on commit 6b6a467

Please sign in to comment.