Adds a key to the store, without saving it to disk (used by LoadWallet)
| 524 | bool AddKeyPubKey(const CKey& key, const CPubKey& pubkey); |
| 525 | //! Adds a key to the store, without saving it to disk (used by LoadWallet) |
| 526 | bool LoadKey(const CKey& key, const CPubKey& pubkey) { return CCryptoKeyStore::AddKeyPubKey(key, pubkey); } |
| 527 | //! Load metadata (used by LoadWallet) |
| 528 | void LoadKeyMetadata(const CPubKey& pubkey, const CKeyMetadata& metadata); |
| 529 |