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

Commit

Permalink
Remove excessive warning (#10831)
Browse files Browse the repository at this point in the history
  • Loading branch information
grbIzl authored and dvdplm committed Jul 2, 2019
1 parent 5b30f22 commit 5f064a9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions rpc/src/v1/helpers/engine_signer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,7 @@ impl ethcore::engines::EngineSigner for EngineSigner {
fn sign(&self, message: ethkey::Message) -> Result<ethkey::Signature, ethkey::Error> {
match self.accounts.sign(self.address, Some(self.password.clone()), message) {
Ok(ok) => Ok(ok),
Err(e) => {
warn!("Unable to sign consensus message: {:?}", e);
Err(ethkey::Error::InvalidSecret)
},
Err(e) => Err(ethkey::Error::InvalidSecret),
}
}

Expand Down

0 comments on commit 5f064a9

Please sign in to comment.