Merge pull request #134 from isislovecruft/fix/signature-error

Impl std::error::Error for SignatureError.
This commit is contained in:
isis agora lovecruft 2020-07-13 23:40:12 +00:00 committed by GitHub
commit 33bb760ea8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,3 +93,6 @@ impl From<InternalError> for SignatureError {
SignatureError::from_source(err)
}
}
#[cfg(feature = "std")]
impl Error for SignatureError { }