kobe-spark 0.7.3

Spark (Bitcoin L2) wallet for Kobe
Documentation
1
2
3
4
5
6
7
8
9
10
//! Error types for Spark wallet operations.

/// Errors that can occur during Spark wallet operations.
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
    /// Core kobe error (index overflow, BIP-32 derivation, etc.).
    #[error(transparent)]
    Core(#[from] kobe_core::Error),
}