| 285 | } |
| 286 | |
| 287 | bool CWallet::HaveKey(const CKeyID &address) const |
| 288 | { |
| 289 | LOCK(cs_wallet); |
| 290 | if (mapHdPubKeys.count(address) > 0) |
| 291 | return true; |
| 292 | return CCryptoKeyStore::HaveKey(address); |
| 293 | } |
| 294 | |
| 295 | bool CWallet::LoadHDPubKey(const CHDPubKey &hdPubKey) |
| 296 | { |
no test coverage detected