1#[derive(Debug, thiserror::Error)] 2pub enum Error { 3 #[error("secp256k1 error")] 4 Secp256k1Error(#[from] libsecp256k1::Error), 5}