feat: make a transparent machine error for signature::Error
This commit is contained in:
parent
175cd777d8
commit
fb37521857
|
@ -48,4 +48,6 @@ pub enum Error {
|
||||||
DeserialisationError(String, Value),
|
DeserialisationError(String, Value),
|
||||||
#[error("Integer overflow")]
|
#[error("Integer overflow")]
|
||||||
OverflowError,
|
OverflowError,
|
||||||
|
#[error(transparent)]
|
||||||
|
InvalidEcdsaSecp256k1Args(#[from] k256::ecdsa::signature::Error),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue