[−][src]Enum verification::Error
All possible verification errors
Variants
Duplicatehas an equal duplicate in the chain
DuplicatedTransactionsContains duplicated transactions
EmptyNo transactions in block
PowInvalid proof-of-work (Block hash does not satisfy nBits)
FuturisticTimestampFuturistic timestamp
TimestampInvalid timestamp
CoinbaseFirst transaction is not a coinbase transaction
Transaction(usize, TransactionError)One of the transactions is invalid (corresponding index and specific transaction error)
DifficultynBits do not match difficulty rules
Fields of Difficulty
expected: Compact | |
actual: Compact |
MerkleRootInvalid merkle root
CoinbaseOverspendCoinbase spends too much
Fields of CoinbaseOverspend
expected_max: u64 | |
actual: u64 |
CoinbaseScriptCoinbase has invalid script sig prefix (BIP90 -> BIP34)
MaximumSigopsMaximum sigops operations exceeded - will not provide how much it was in total
since it stops counting once MAX_BLOCK_SIGOPS is reached
MaximumSigopsCostMaximum sigops operations cost exceeded
CoinbaseSignatureLength(usize)Coinbase signature is not in the range 2-100
Size(usize)Block size is invalid
WeightBlock weight is invalid
NonFinalBlockBlock transactions are not final.
OldVersionBlockOld version block.
TransactionFeeAndRewardOverflowSum of the transaction fees in block + coinbase reward exceeds u64::max
TransactionFeesOverflowSum of the transaction fees in block exceeds u64::max
ReferencedInputsSumOverflowSum of all referenced outputs in block transactions resulted in the overflow
WitnessInvalidNonceSizeSegWit: bad witess nonce size
WitnessMerkleCommitmentMismatchSegWit: witness merkle mismatch
UnexpectedWitnessSegWit: unexpected witness
NonCanonicalTransactionOrderingNon-canonical tranasctions ordering within block
Database(DBError)Database error
Trait Implementations
impl Debug for Error[src]
impl Debug for Errorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for Error[src]
impl PartialEq for Errorfn eq(&self, other: &Error) -> bool[src]
fn eq(&self, other: &Error) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Error) -> bool[src]
fn ne(&self, other: &Error) -> boolThis method tests for !=.
impl From<DBError> for Error[src]
impl From<DBError> for ErrorAuto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, ⓘImportant traits for &'a mut Rfn borrow(&self) -> &T[src]
fn borrow(&self) -> &TImmutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, ⓘImportant traits for &'a mut Rfn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> Erased for T
impl<T> Erased for T