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)Transaction fee lower than config
Tuple Fields of LowFeeRate
0: StringExceededMaximumAncestorsCount(String)Transaction exceeded maximum ancestors count limit
Tuple Fields of ExceededMaximumAncestorsCount
0: StringFull(String)Transaction pool exceeded maximum size or cycles limit,
Tuple Fields of Full
0: StringDuplicated(String)Transaction already exist in transaction_pool
Tuple Fields of Duplicated
0: StringMalformed(String)Malformed transaction
Tuple Fields of Malformed
0: StringDeclaredWrongCycles(String)Declared wrong cycles
Tuple Fields of DeclaredWrongCycles
0: StringResolve(String)Resolve failed
Tuple Fields of Resolve
0: StringVerification(String)Verification failed
Tuple Fields of Verification
0: StringTrait 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