[Wallet] ensure CKeyMetadata.hdMasterKeyID will be cleared during SetNull()

This commit is contained in:
Jonas Schnelli 2016-07-15 10:33:25 +02:00
parent f70808596f
commit 68d7682b9f
No known key found for this signature in database
GPG Key ID: 29D4BCB6416F53EC
1 changed files with 2 additions and 2 deletions

View File

@ -87,9 +87,8 @@ public:
}
CKeyMetadata(int64_t nCreateTime_)
{
nVersion = CKeyMetadata::CURRENT_VERSION;
SetNull();
nCreateTime = nCreateTime_;
hdKeypath.clear();
}
ADD_SERIALIZE_METHODS;
@ -111,6 +110,7 @@ public:
nVersion = CKeyMetadata::CURRENT_VERSION;
nCreateTime = 0;
hdKeypath.clear();
hdMasterKeyID.SetNull();
}
};