Skip to content

Commit 38bcc84

Browse files
Implement LoggerAssetProvider for new methods
1 parent 14833b0 commit 38bcc84

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
@@ -149,6 +149,11 @@ impl AssetProvider<DefiniteDescriptorKey> for LoggerAssetProvider {
149149
impl_log_method!(provider_lookup_ecdsa_sig, pk: &DefiniteDescriptorKey, -> bool);
150150
impl_log_method!(provider_lookup_tap_key_spend_sig, pk: &DefiniteDescriptorKey, -> Option<usize>);
151151
impl_log_method!(provider_lookup_tap_leaf_script_sig, pk: &DefiniteDescriptorKey, leaf_hash: &TapLeafHash, -> Option<usize>);
152+
impl_log_method!(provider_lookup_tap_control_block_map, -> Option<&BTreeMap<ControlBlock, (bitcoin::ScriptBuf, LeafVersion)>>);
153+
impl_log_method!(provider_lookup_raw_pkh_pk, hash: &hash160::Hash, -> Option<bitcoin::PublicKey>);
154+
impl_log_method!(provider_lookup_raw_pkh_x_only_pk, hash: &hash160::Hash, -> Option<XOnlyPublicKey>);
155+
impl_log_method!(provider_lookup_raw_pkh_ecdsa_sig, hash: &hash160::Hash, -> Option<bitcoin::PublicKey>);
156+
impl_log_method!(provider_lookup_raw_pkh_tap_leaf_script_sig, hash: &(hash160::Hash, TapLeafHash), -> Option<(XOnlyPublicKey, usize)>);
152157
impl_log_method!(provider_lookup_sha256, hash: &sha256::Hash, -> bool);
153158
impl_log_method!(provider_lookup_hash256, hash: &hash256::Hash, -> bool);
154159
impl_log_method!(provider_lookup_ripemd160, hash: &ripemd160::Hash, -> bool);

0 commit comments

Comments
 (0)