pub enum BlockchainError {
Show 16 variants
BlockNotPresent,
OrphanOrInvalidBlock,
Parsing(String),
BlockValidation(BlockValidationErrors),
TransactionError(TransactionError),
InvalidProof,
UtreexoError(String),
UtreexoLeaf(UtreexoLeafError),
Database(Box<dyn DatabaseError>),
ConsensusDecode(Error),
ChainNotInitialized,
InvalidTip(String),
ScriptValidationFailed(Error),
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(String)
UtreexoLeaf(UtreexoLeafError)
Database(Box<dyn DatabaseError>)
ConsensusDecode(Error)
ChainNotInitialized
InvalidTip(String)
ScriptValidationFailed(Error)
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<Error> for BlockchainError
impl From<Error> for BlockchainError
Source§impl From<String> for BlockchainError
impl From<String> 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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more