pub enum TransactionValidityError {
CoinAlreadySpent,
CoinHasNotMatured,
CoinDoesntExist,
DataStoreError(Box<dyn Error>),
}
Variants
CoinAlreadySpent
CoinHasNotMatured
CoinDoesntExist
DataStoreError(Box<dyn Error>)
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for TransactionValidityError
impl !Send for TransactionValidityError
impl !Sync for TransactionValidityError
impl Unpin for TransactionValidityError
impl !UnwindSafe for TransactionValidityError
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more