| 3652 | } |
| 3653 | |
| 3654 | void CWallet::ConnectScriptPubKeyManNotifiers() |
| 3655 | { |
| 3656 | for (const auto& spk_man : GetActiveScriptPubKeyMans()) { |
| 3657 | spk_man->NotifyWatchonlyChanged.connect(NotifyWatchonlyChanged); |
| 3658 | spk_man->NotifyCanGetAddressesChanged.connect(NotifyCanGetAddressesChanged); |
| 3659 | } |
| 3660 | } |
| 3661 | |
| 3662 | void CWallet::LoadDescriptorScriptPubKeyMan(uint256 id, WalletDescriptor& desc) |
| 3663 | { |
no test coverage detected