diff options
| author | 21E14 <[email protected]> | 2014-12-18 20:25:04 -0500 |
|---|---|---|
| committer | 21E14 <[email protected]> | 2014-12-18 20:25:04 -0500 |
| commit | 146c0a7c5acc06070badf1db442520fab5395614 (patch) | |
| tree | 0acec304d716685c5f4c0ceea3fc3167770e24d9 /src | |
| parent | Merge pull request #5484 (diff) | |
| download | discoin-146c0a7c5acc06070badf1db442520fab5395614.tar.xz discoin-146c0a7c5acc06070badf1db442520fab5395614.zip | |
Add RandAddSeedPerfmon to MakeNewKey
Diffstat (limited to 'src')
| -rw-r--r-- | src/key.cpp | 1 | ||||
| -rw-r--r-- | src/wallet.cpp | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/key.cpp b/src/key.cpp index 36613342b..3d5886d35 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -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)); diff --git a/src/wallet.cpp b/src/wallet.cpp index 32a64daac..b6699a41d 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -70,7 +70,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); |