mirror of
https://github.com/logos-blockchain/logos-blockchain-specs.git
synced 2026-01-09 16:43:10 +00:00
* cl: restructure cl into a workspace and integrate nullifier proof * cl: get cl tests building again * cl: cleanup commented out code * cl: comment out the failing ptx tests for now.
10 lines
208 B
Rust
10 lines
208 B
Rust
use thiserror::Error;
|
|
|
|
pub type Result<T> = core::result::Result<T, Error>;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum Error {
|
|
#[error("risc0 failed to serde")]
|
|
Risc0Serde(#[from] risc0_zkvm::serde::Error),
|
|
}
|