Enum ckb_sdk::unlock::ScriptSignError
source · pub enum ScriptSignError {
Signer(SignerError),
WitnessNotEnough,
InvalidWitnessArgs(VerificationError),
InvalidOmniLockWitnessLock(String),
InvalidMultisigConfig(String),
TooManySignatures,
InvalidConfig(ConfigError),
Other(Error),
}Variants§
Signer(SignerError)
WitnessNotEnough
InvalidWitnessArgs(VerificationError)
InvalidOmniLockWitnessLock(String)
InvalidMultisigConfig(String)
TooManySignatures
InvalidConfig(ConfigError)
Other(Error)
Trait Implementations§
source§impl Debug for ScriptSignError
impl Debug for ScriptSignError
source§impl Display for ScriptSignError
impl Display for ScriptSignError
source§impl Error for ScriptSignError
impl Error for ScriptSignError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<Error> for ScriptSignError
impl From<Error> for ScriptSignError
source§impl From<ScriptSignError> for UnlockError
impl From<ScriptSignError> for UnlockError
source§fn from(source: ScriptSignError) -> Self
fn from(source: ScriptSignError) -> Self
Converts to this type from the input type.
source§impl From<SignerError> for ScriptSignError
impl From<SignerError> for ScriptSignError
source§fn from(source: SignerError) -> Self
fn from(source: SignerError) -> Self
Converts to this type from the input type.