Enum ckb_jsonrpc_types::PoolTransactionReject [−][src]
pub enum PoolTransactionReject {
LowFeeRate(String),
ExceededMaximumAncestorsCount(String),
Full(String),
Duplicated(String),
Malformed(String),
DeclaredWrongCycles(String),
Resolve(String),
Verification(String),
}Expand description
TX reject message
Variants
LowFeeRate(String)
Tuple Fields
0: StringTransaction fee lower than config
ExceededMaximumAncestorsCount(String)
Tuple Fields
0: StringTransaction exceeded maximum ancestors count limit
Full(String)
Tuple Fields
0: StringTransaction pool exceeded maximum size or cycles limit,
Duplicated(String)
Tuple Fields
0: StringTransaction already exist in transaction_pool
Malformed(String)
Tuple Fields
0: StringMalformed transaction
DeclaredWrongCycles(String)
Tuple Fields
0: StringDeclared wrong cycles
Resolve(String)
Tuple Fields
0: StringResolve failed
Verification(String)
Tuple Fields
0: StringVerification failed
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for PoolTransactionReject
impl Send for PoolTransactionReject
impl Sync for PoolTransactionReject
impl Unpin for PoolTransactionReject
impl UnwindSafe for PoolTransactionReject
Blanket Implementations
Mutably borrows from an owned value. Read more
