#[non_exhaustive]pub enum PowError {
InsufficientWork {
actual: u8,
expected: u8,
},
InsufficientCommitment {
actual: u8,
expected: u8,
},
InvalidCommitment,
MissingCommitment,
}Expand description
Errors raised by verify_pow and verify_pow_strict.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InsufficientWork
The event’s id has fewer leading zero bits than required.
InsufficientCommitment
The author’s committed difficulty (the third element of the nonce
tag) is below what the caller demands. NIP-13 §commitment requires
the commitment to match or exceed the verifier’s threshold so that
random low-difficulty matches cannot be passed off as PoW.
InvalidCommitment
The nonce tag carried a non-integer commitment that we could not
parse.
MissingCommitment
The strict-mode verifier required a committed difficulty but the
event carried no nonce tag (or the tag had no commitment column).
Trait Implementations§
impl Copy for PowError
impl Eq for PowError
Source§impl Error for PowError
impl Error for PowError
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()
impl StructuralPartialEq for PowError
Auto Trait Implementations§
impl Freeze for PowError
impl RefUnwindSafe for PowError
impl Send for PowError
impl Sync for PowError
impl Unpin for PowError
impl UnsafeUnpin for PowError
impl UnwindSafe for PowError
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.