| 2289 | } |
| 2290 | |
| 2291 | bool DescriptorScriptPubKeyMan::HasWalletDescriptor(const WalletDescriptor& desc) const |
| 2292 | { |
| 2293 | LOCK(cs_desc_man); |
| 2294 | return m_wallet_descriptor.descriptor != nullptr && desc.descriptor != nullptr && m_wallet_descriptor.descriptor->ToString() == desc.descriptor->ToString(); |
| 2295 | } |
| 2296 | |
| 2297 | void DescriptorScriptPubKeyMan::WriteDescriptor() |
| 2298 | { |
no test coverage detected