Skip to main content

rootchain_crypto/
error.rs

1use thiserror::Error;
2
3#[derive(Debug, Error)]
4pub enum CryptoError {
5    #[error("signature error: {0}")]
6    Signature(#[from] ed25519_dalek::SignatureError),
7}