pub enum BlockchainError {
Show 15 variants
BlockNotPresent,
OrphanOrInvalidBlock,
Parsing(String),
BlockValidation(BlockValidationErrors),
TransactionError(TransactionError),
InvalidProof,
UtreexoError(StumpError),
UtreexoLeaf(UtreexoLeafError),
Database(Box<dyn DatabaseError>),
ConsensusDecode(Error),
ChainNotInitialized,
InvalidTip(String),
Io(ioError),
UnsupportedNetwork(Network),
BadValidationIndex,
}Expand description
This is the highest level error type in floresta-chain, returned by the crate::ChainState methods. It represents errors encountered during blockchain validation.
Variants§
BlockNotPresent
OrphanOrInvalidBlock
Parsing(String)
BlockValidation(BlockValidationErrors)
TransactionError(TransactionError)
InvalidProof
UtreexoError(StumpError)
UtreexoLeaf(UtreexoLeafError)
Database(Box<dyn DatabaseError>)
ConsensusDecode(Error)
ChainNotInitialized
InvalidTip(String)
Io(ioError)
UnsupportedNetwork(Network)
BadValidationIndex
Trait Implementations§
Source§impl Debug for BlockchainError
impl Debug for BlockchainError
Source§impl Display for BlockchainError
impl Display for BlockchainError
Source§impl Error for BlockchainError
impl Error for BlockchainError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<BlockValidationErrors> for BlockchainError
impl From<BlockValidationErrors> for BlockchainError
Source§fn from(e: BlockValidationErrors) -> Self
fn from(e: BlockValidationErrors) -> Self
Converts to this type from the input type.
Source§impl From<Error> for BlockchainError
impl From<Error> for BlockchainError
Source§impl From<Error> for BlockchainError
impl From<Error> for BlockchainError
Source§impl From<StumpError> for BlockchainError
impl From<StumpError> for BlockchainError
Source§impl<T: DatabaseError> From<T> for BlockchainError
impl<T: DatabaseError> From<T> for BlockchainError
Source§impl From<TransactionError> for BlockchainError
impl From<TransactionError> for BlockchainError
Source§fn from(e: TransactionError) -> Self
fn from(e: TransactionError) -> Self
Converts to this type from the input type.
Source§impl From<UtreexoLeafError> for BlockchainError
impl From<UtreexoLeafError> for BlockchainError
Source§fn from(e: UtreexoLeafError) -> Self
fn from(e: UtreexoLeafError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BlockchainError
impl !RefUnwindSafe for BlockchainError
impl Send for BlockchainError
impl Sync for BlockchainError
impl Unpin for BlockchainError
impl !UnwindSafe for BlockchainError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more