pub trait Tweakable {
// Required method
fn tweak<Ctx: Verification + Signing, Ctr: Contract>(
&self,
tweak: &Ctr,
secp: &Secp256k1<Ctx>,
) -> Self;
}
Expand description
A key or object containing keys that may be tweaked for pay-to-contract constructions
Required Methods§
Object Safety§
This trait is not object safe.