| 325 | } |
| 326 | |
| 327 | void CWallet::LoadScriptMetadata(const CScriptID& script_id, const CKeyMetadata &meta) |
| 328 | { |
| 329 | AssertLockHeld(cs_wallet); // m_script_metadata |
| 330 | UpdateTimeFirstKey(meta.nCreateTime); |
| 331 | m_script_metadata[script_id] = meta; |
| 332 | } |
| 333 | |
| 334 | bool CWallet::LoadCryptedKey(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret) |
| 335 | { |