Merge pull request #5508

146c0a7 Add RandAddSeedPerfmon to MakeNewKey (21E14)
This commit is contained in:
Pieter Wuille 2015-01-04 16:34:39 +01:00
commit 9a5cabf3da
No known key found for this signature in database
GPG Key ID: 57896D2FF8F0B657
2 changed files with 1 additions and 1 deletions

View File

@ -34,6 +34,7 @@ bool CKey::Check(const unsigned char *vch) {
}
void CKey::MakeNewKey(bool fCompressedIn) {
RandAddSeedPerfmon();
do {
GetRandBytes(vch, sizeof(vch));
} while (!Check(vch));

View File

@ -71,7 +71,6 @@ CPubKey CWallet::GenerateNewKey()
AssertLockHeld(cs_wallet); // mapKeyMetadata
bool fCompressed = CanSupportFeature(FEATURE_COMPRPUBKEY); // default to compressed public keys if we want 0.6.0 wallets
RandAddSeedPerfmon();
CKey secret;
secret.MakeNewKey(fCompressed);