pub enum ErrorKind {
Show 17 variants InvalidTime, NonZeroDupIf, ZeroThreshold, OverThreshold(usizeusize), NoStrongChild, LeftNotDissatisfiable, RightNotDissatisfiable, SwapNonOne, NonZeroZero, LeftNotUnit, ChildBase1(Base), ChildBase2(BaseBase), ChildBase3(BaseBaseBase), ThresholdBase(usizeBase), ThresholdDissat(usize), ThresholdNonUnit(usize), ThresholdNotStrong { k: usize, n: usize, n_strong: usize, },
}
Expand description

Detailed type of a typechecker error

Variants

InvalidTime

Relative or absolute timelock had an invalid time value (either 0, or >=0x80000000)

NonZeroDupIf

Passed a z argument to a d wrapper when z was expected

ZeroThreshold

Multisignature or threshold policy had a k value of 0

OverThreshold(usizeusize)

Multisignature or threshold policy has a k value in excess of the number of subfragments

NoStrongChild

Attempted to construct a disjunction (or andor) for which none of the child nodes were strong. This means that a 3rd party could produce a satisfaction for any branch, meaning that no matter which one an honest signer chooses, it is possible to malleate the transaction.

LeftNotDissatisfiable

Many fragments (all disjunctions except or_i as well as andor require their left child be dissatisfiable.

RightNotDissatisfiable

or_b requires its right child be dissatisfiable

SwapNonOne

Tried to use the s: modifier on a fragment that takes more than one input

NonZeroZero

Tried to use the j: (SIZE 0NOTEQUAL IF) wrapper on something that may be satisfied by a 0 input

LeftNotUnit

Many fragments require their left child to be a unit. This was not the case.

ChildBase1(Base)

Attempted to construct a wrapper, but the child had an invalid type

ChildBase2(BaseBase)

Attempted to construct a conjunction or disjunction, but the fragments’ children were of invalid types

ChildBase3(BaseBaseBase)

Attempted to construct an andor but the fragments’ children were of invalid types

ThresholdBase(usizeBase)

The nth child of a threshold fragment had an invalid type (the first must be B and the rest Ws)

ThresholdDissat(usize)

The nth child of a threshold fragment did not have a unique satisfaction

ThresholdNonUnit(usize)

The nth child of a threshold fragment was not a unit

ThresholdNotStrong

Fields

k: usize

Threshold parameter

n: usize

Number of children

n_strong: usize

Number of strong children

Insufficiently many children of a threshold fragment were strong

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.