griffin-core 0.3.0

UTXO framework for Substrate and Polkadot.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror_no_std::Error;

use alloc::string::String;

#[derive(Error, Debug)]
pub enum Error {
    #[error("Buffer is not byte aligned")]
    BufferNotByteAligned,
    #[error("{0}")]
    Message(String),
}