| 544 | } |
| 545 | |
| 546 | bool CWallet::LoadCryptedKey(const CPubKey &vchPubKey, const std::vector<uint8_t> &vchCryptedSecret) { |
| 547 | return CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret); |
| 548 | } |
| 549 | |
| 550 | bool CWallet::AddKey(const CKey &key, const CKey &minerKey) { |
| 551 | if ((!key.IsValid()) || (!minerKey.IsValid())) |