| 1509 | } |
| 1510 | |
| 1511 | bool DescriptorScriptPubKeyMan::HasWalletDescriptor(const WalletDescriptor& desc) const |
| 1512 | { |
| 1513 | LOCK(cs_desc_man); |
| 1514 | return !m_wallet_descriptor.id.IsNull() && !desc.id.IsNull() && m_wallet_descriptor.id == desc.id; |
| 1515 | } |
| 1516 | |
| 1517 | void DescriptorScriptPubKeyMan::WriteDescriptor() |
| 1518 | { |
no test coverage detected