This commit is contained in:
thesimplekid
2023-04-23 13:40:52 -04:00
parent 6344925830
commit 231bc6f286
6 changed files with 156 additions and 3 deletions

View File

@@ -6,4 +6,7 @@ pub enum Error {
/// Parse Url Error
#[error("minreq error: {0}")]
UrlParseError(#[from] url::ParseError),
/// Secp245k1
#[error("secp256k1 error: {0}")]
Secpk256k1Error(#[from] secp256k1::Error),
}