pub enum VerificationError {
RangeProofError(usize, Error),
RangeProofMissing(usize),
SurjectionProofError(usize, Error),
SurjectionProofVerificationError(usize),
SurjectionProofMissing(usize),
SpentTxOutError(usize, TxOutError),
TxOutError(usize, TxOutError),
IssuanceTransactionInput(usize),
UtxoInputLenMismatch,
BalanceCheckFailed,
}Expand description
Transaction Verification Errors
Variants§
RangeProofError(usize, Error)
Verification of rangeproof failed
RangeProofMissing(usize)
Missing Range Proof
SurjectionProofError(usize, Error)
Verification of SurjectionProof failed
SurjectionProofVerificationError(usize)
Surjection Proof verification error
SurjectionProofMissing(usize)
Missing Range Proof
SpentTxOutError(usize, TxOutError)
Spent Txout error
TxOutError(usize, TxOutError)
Current transaction txout error
IssuanceTransactionInput(usize)
Issuance transaction verification not supported yet
UtxoInputLenMismatch
Spent input len must match the len of transaction input
BalanceCheckFailed
Balance Check failed
Trait Implementations§
Source§impl Clone for VerificationError
impl Clone for VerificationError
Source§fn clone(&self) -> VerificationError
fn clone(&self) -> VerificationError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VerificationError
impl Debug for VerificationError
Source§impl Display for VerificationError
impl Display for VerificationError
Source§impl Error for VerificationError
impl Error for VerificationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for VerificationError
impl PartialEq for VerificationError
impl Eq for VerificationError
impl StructuralPartialEq for VerificationError
Auto Trait Implementations§
impl Freeze for VerificationError
impl RefUnwindSafe for VerificationError
impl Send for VerificationError
impl Sync for VerificationError
impl Unpin for VerificationError
impl UnwindSafe for VerificationError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more