Skip to content

Commit b274703

Browse files
Implement LoggerAssetProvider for new methods
1 parent 5a76fe0 commit b274703

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/plan.rs

+5
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,11 @@ impl AssetProvider<DefiniteDescriptorKey> for LoggerAssetProvider {
150150
impl_log_method!(provider_lookup_ecdsa_sig, pk: &DefiniteDescriptorKey, -> bool);
151151
impl_log_method!(provider_lookup_tap_key_spend_sig, pk: &DefiniteDescriptorKey, -> Option<usize>);
152152
impl_log_method!(provider_lookup_tap_leaf_script_sig, pk: &DefiniteDescriptorKey, leaf_hash: &TapLeafHash, -> Option<usize>);
153+
impl_log_method!(provider_lookup_tap_control_block_map, -> Option<&BTreeMap<ControlBlock, (bitcoin::ScriptBuf, LeafVersion)>>);
154+
impl_log_method!(provider_lookup_raw_pkh_pk, hash: &hash160::Hash, -> Option<bitcoin::PublicKey>);
155+
impl_log_method!(provider_lookup_raw_pkh_x_only_pk, hash: &hash160::Hash, -> Option<XOnlyPublicKey>);
156+
impl_log_method!(provider_lookup_raw_pkh_ecdsa_sig, hash: &hash160::Hash, -> Option<bitcoin::PublicKey>);
157+
impl_log_method!(provider_lookup_raw_pkh_tap_leaf_script_sig, hash: &(hash160::Hash, TapLeafHash), -> Option<(XOnlyPublicKey, usize)>);
153158
impl_log_method!(provider_lookup_sha256, hash: &sha256::Hash, -> bool);
154159
impl_log_method!(provider_lookup_hash256, hash: &hash256::Hash, -> bool);
155160
impl_log_method!(provider_lookup_ripemd160, hash: &ripemd160::Hash, -> bool);

0 commit comments

Comments
 (0)