Enum bdk::wallet::signer::TapLeavesOptions
source · Expand description
Customize which taproot script-path leaves the signer should sign.
Variants§
All
The signer will sign all the leaves it has a key for.
Include(Vec<TapLeafHash>)
The signer won’t sign leaves other than the ones specified. Note that it could still ignore some of the specified leaves, if it doesn’t have the right key to sign them.
Exclude(Vec<TapLeafHash>)
The signer won’t sign the specified leaves.
None
The signer won’t sign any leaf.
Trait Implementations§
source§impl Clone for TapLeavesOptions
impl Clone for TapLeavesOptions
source§fn clone(&self) -> TapLeavesOptions
fn clone(&self) -> TapLeavesOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more