|
|
@ -627,11 +627,11 @@ bool CWallet::EncryptWallet(const SecureString& strWalletPassphrase) |
|
|
|
Lock(); |
|
|
|
Lock(); |
|
|
|
Unlock(strWalletPassphrase); |
|
|
|
Unlock(strWalletPassphrase); |
|
|
|
|
|
|
|
|
|
|
|
// if we are using HD, replace the HD master key with a new one
|
|
|
|
// if we are using HD, replace the HD master key (seed) with a new one
|
|
|
|
if (!hdChain.masterKeyID.IsNull()) { |
|
|
|
if (!hdChain.masterKeyID.IsNull()) { |
|
|
|
CKey key; |
|
|
|
CKey key; |
|
|
|
key.MakeNewKey(true); |
|
|
|
CPubKey masterPubKey = GenerateNewHDMasterKey(); |
|
|
|
if (!SetHDMasterKey(key)) |
|
|
|
if (!SetHDMasterKey(masterPubKey)) |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -1175,20 +1175,43 @@ CAmount CWallet::GetChange(const CTransaction& tx) const |
|
|
|
return nChange; |
|
|
|
return nChange; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
bool CWallet::SetHDMasterKey(const CKey& key) |
|
|
|
CPubKey CWallet::GenerateNewHDMasterKey() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
CKey key; |
|
|
|
|
|
|
|
key.MakeNewKey(true); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int64_t nCreationTime = GetTime(); |
|
|
|
|
|
|
|
CKeyMetadata metadata(nCreationTime); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// calculate the pubkey
|
|
|
|
|
|
|
|
CPubKey pubkey = key.GetPubKey(); |
|
|
|
|
|
|
|
assert(key.VerifyPubKey(pubkey)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// set the hd keypath to "m" -> Master, refers the masterkeyid to itself
|
|
|
|
|
|
|
|
metadata.hdKeypath = "m"; |
|
|
|
|
|
|
|
metadata.hdMasterKeyID = pubkey.GetID(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
LOCK(cs_wallet); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// mem store the metadata
|
|
|
|
|
|
|
|
mapKeyMetadata[pubkey.GetID()] = metadata; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// write the key&metadata to the database
|
|
|
|
|
|
|
|
if (!AddKeyPubKey(key, pubkey)) |
|
|
|
|
|
|
|
throw std::runtime_error("CWallet::GenerateNewKey(): AddKey failed"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return pubkey; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool CWallet::SetHDMasterKey(const CPubKey& pubkey) |
|
|
|
{ |
|
|
|
{ |
|
|
|
LOCK(cs_wallet); |
|
|
|
LOCK(cs_wallet); |
|
|
|
|
|
|
|
|
|
|
|
// ensure this wallet.dat can only be opened by clients supporting HD
|
|
|
|
// ensure this wallet.dat can only be opened by clients supporting HD
|
|
|
|
SetMinVersion(FEATURE_HD); |
|
|
|
SetMinVersion(FEATURE_HD); |
|
|
|
|
|
|
|
|
|
|
|
// store the key as normal "key"/"ckey" object
|
|
|
|
|
|
|
|
// in the database
|
|
|
|
|
|
|
|
// key metadata is not required
|
|
|
|
|
|
|
|
CPubKey pubkey = key.GetPubKey(); |
|
|
|
|
|
|
|
if (!AddKeyPubKey(key, pubkey)) |
|
|
|
|
|
|
|
throw std::runtime_error("CWallet::GenerateNewKey(): AddKey failed"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// store the keyid (hash160) together with
|
|
|
|
// store the keyid (hash160) together with
|
|
|
|
// the child index counter in the database
|
|
|
|
// the child index counter in the database
|
|
|
|
// as a hdchain object
|
|
|
|
// as a hdchain object
|
|
|
@ -3308,8 +3331,8 @@ bool CWallet::InitLoadWallet() |
|
|
|
if (GetBoolArg("-usehd", DEFAULT_USE_HD_WALLET) && walletInstance->hdChain.masterKeyID.IsNull()) { |
|
|
|
if (GetBoolArg("-usehd", DEFAULT_USE_HD_WALLET) && walletInstance->hdChain.masterKeyID.IsNull()) { |
|
|
|
// generate a new master key
|
|
|
|
// generate a new master key
|
|
|
|
CKey key; |
|
|
|
CKey key; |
|
|
|
key.MakeNewKey(true); |
|
|
|
CPubKey masterPubKey = walletInstance->GenerateNewHDMasterKey(); |
|
|
|
if (!walletInstance->SetHDMasterKey(key)) |
|
|
|
if (!walletInstance->SetHDMasterKey(masterPubKey)) |
|
|
|
throw std::runtime_error("CWallet::GenerateNewKey(): Storing master key failed"); |
|
|
|
throw std::runtime_error("CWallet::GenerateNewKey(): Storing master key failed"); |
|
|
|
} |
|
|
|
} |
|
|
|
CPubKey newDefaultKey; |
|
|
|
CPubKey newDefaultKey; |
|
|
|