aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2015-01-04 16:34:39 +0100
committerPieter Wuille <pieter.wuille@gmail.com>2015-01-04 16:37:24 +0100
commit9a5cabf3da21f1707c9c38891f4095862b7abe16 (patch)
tree44ac8be731fd6b3b0fa29cb332922e538462b135 /src
parente8a6639176f6da9508b4b71e612fcadbf86dd536 (diff)
parent146c0a7c5acc06070badf1db442520fab5395614 (diff)
downloadbitcoin-9a5cabf3da21f1707c9c38891f4095862b7abe16.tar.xz
Merge pull request #5508
146c0a7 Add RandAddSeedPerfmon to MakeNewKey (21E14)
Diffstat (limited to 'src')
-rw-r--r--src/key.cpp1
-rw-r--r--src/wallet.cpp1
2 files changed, 1 insertions, 1 deletions
diff --git a/src/key.cpp b/src/key.cpp
index 7f1cef1708..f09536fbbe 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 8504c0a287..4920cb21fc 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -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);