[][src]Enum grin_pool::types::PoolError

pub enum PoolError {
    InvalidTx(Error),
    InvalidBlock(Error),
    Keychain(Error),
    Committed(Error),
    ImmatureTransaction,
    ImmatureCoinbase,
    DandelionError,
    OverCapacity,
    LowFeeTransaction(u64),
    DuplicateCommitment,
    DuplicateTx,
    Other(String),
}

Possible errors when interacting with the transaction pool.

Variants

InvalidTx(Error)

An invalid pool entry caused by underlying tx validation error

InvalidBlock(Error)

An invalid pool entry caused by underlying block validation error

Keychain(Error)

Underlying keychain error.

Committed(Error)

Underlying "committed" error.

ImmatureTransaction

Attempt to add a transaction to the pool with lock_height greater than height of current block

ImmatureCoinbase

Attempt to spend a coinbase output before it has sufficiently matured.

DandelionError

Problem propagating a stem tx to the next Dandelion relay node.

OverCapacity

Transaction pool is over capacity, can't accept more transactions

LowFeeTransaction(u64)

Transaction fee is too low given its weight

DuplicateCommitment

Attempt to add a duplicate output to the pool.

DuplicateTx

Attempt to add a duplicate tx to the pool.

Other(String)

Other kinds of error (not yet pulled out into meaningful errors).

Trait Implementations

impl From<Error> for PoolError[src]

impl From<Error> for PoolError[src]

impl From<Error> for PoolError[src]

impl From<Error> for PoolError[src]

impl Debug for PoolError[src]

Auto Trait Implementations

impl Send for PoolError

impl Sync for PoolError

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> DebugAny for T where
    T: Any + Debug

impl<T> UnsafeAny for T where
    T: Any

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self