pub enum UpdaterError {
InvalidIndex,
NotP2sh,
WrongRedeemScript,
}
Expand description
Errors that can occur while signing a transparent input in a PCZT.
Variants§
InvalidIndex
An out-of-bounds index was provided when looking up an input or output.
NotP2sh
A redeem_script
can only be set on a P2SH coin.
WrongRedeemScript
The provided redeem_script
does not match the input’s script_pubkey
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UpdaterError
impl RefUnwindSafe for UpdaterError
impl Send for UpdaterError
impl Sync for UpdaterError
impl Unpin for UpdaterError
impl UnwindSafe for UpdaterError
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more