More derives for key error

This commit is contained in:
Dr Maxim Orlovsky 2021-01-14 16:03:53 +01:00
parent d2344d3d61
commit 246713821d
No known key found for this signature in database
GPG Key ID: FFC0250947E5C6F7
1 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ use hash_types::{PubkeyHash, WPubkeyHash};
use util::base58; use util::base58;
/// A key-related error. /// A key-related error.
#[derive(Debug)] #[derive(Debug, PartialEq, Eq, Clone)]
pub enum Error { pub enum Error {
/// Base58 encoding error /// Base58 encoding error
Base58(base58::Error), Base58(base58::Error),
@ -39,8 +39,8 @@ pub enum Error {
impl fmt::Display for Error { impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self { match *self {
Error::Base58(ref e) => write!(f, "base58 error: {}", e), Error::Base58(ref e) => write!(f, "Key base58 error: {}", e),
Error::Secp256k1(ref e) => write!(f, "secp256k1 error: {}", e), Error::Secp256k1(ref e) => write!(f, "Key secp256k1 error: {}", e),
} }
} }
} }