Skip to main content

cuprate_txpool/
error.rs

1/// Txpool error.
2#[derive(thiserror::Error, Debug)]
3pub enum TxPoolError {
4    #[error("{0}")]
5    Fjall(#[from] fjall::Error),
6    #[error("Required key not found")]
7    NotFound,
8}