|
|
|
@ -284,7 +284,7 @@ bool CWallet::AddCryptedKey(const CPubKey &vchPubKey,
@@ -284,7 +284,7 @@ bool CWallet::AddCryptedKey(const CPubKey &vchPubKey,
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool CWallet::LoadKeyMetadata(const CTxDestination& keyID, const CKeyMetadata &meta) |
|
|
|
|
bool CWallet::LoadKeyMetadata(const CKeyID& keyID, const CKeyMetadata &meta) |
|
|
|
|
{ |
|
|
|
|
AssertLockHeld(cs_wallet); // mapKeyMetadata
|
|
|
|
|
UpdateTimeFirstKey(meta.nCreateTime); |
|
|
|
@ -292,6 +292,14 @@ bool CWallet::LoadKeyMetadata(const CTxDestination& keyID, const CKeyMetadata &m
@@ -292,6 +292,14 @@ bool CWallet::LoadKeyMetadata(const CTxDestination& keyID, const CKeyMetadata &m
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool CWallet::LoadScriptMetadata(const CScriptID& script_id, const CKeyMetadata &meta) |
|
|
|
|
{ |
|
|
|
|
AssertLockHeld(cs_wallet); // m_script_metadata
|
|
|
|
|
UpdateTimeFirstKey(meta.nCreateTime); |
|
|
|
|
m_script_metadata[script_id] = meta; |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool CWallet::LoadCryptedKey(const CPubKey &vchPubKey, const std::vector<unsigned char> &vchCryptedSecret) |
|
|
|
|
{ |
|
|
|
|
return CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret); |
|
|
|
@ -340,7 +348,7 @@ bool CWallet::AddWatchOnly(const CScript& dest)
@@ -340,7 +348,7 @@ bool CWallet::AddWatchOnly(const CScript& dest)
|
|
|
|
|
{ |
|
|
|
|
if (!CCryptoKeyStore::AddWatchOnly(dest)) |
|
|
|
|
return false; |
|
|
|
|
const CKeyMetadata& meta = mapKeyMetadata[CScriptID(dest)]; |
|
|
|
|
const CKeyMetadata& meta = m_script_metadata[CScriptID(dest)]; |
|
|
|
|
UpdateTimeFirstKey(meta.nCreateTime); |
|
|
|
|
NotifyWatchonlyChanged(true); |
|
|
|
|
return CWalletDB(*dbw).WriteWatchOnly(dest, meta); |
|
|
|
@ -348,7 +356,7 @@ bool CWallet::AddWatchOnly(const CScript& dest)
@@ -348,7 +356,7 @@ bool CWallet::AddWatchOnly(const CScript& dest)
|
|
|
|
|
|
|
|
|
|
bool CWallet::AddWatchOnly(const CScript& dest, int64_t nCreateTime) |
|
|
|
|
{ |
|
|
|
|
mapKeyMetadata[CScriptID(dest)].nCreateTime = nCreateTime; |
|
|
|
|
m_script_metadata[CScriptID(dest)].nCreateTime = nCreateTime; |
|
|
|
|
return AddWatchOnly(dest); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|