aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2011-07-13 18:36:56 -0700
committerGavin Andresen <[email protected]>2011-07-13 18:36:56 -0700
commit36cd1ad5c90957608f711f79c7c2d8ef8a05c252 (patch)
tree106c849a4e7c7bfe236f39b8cbf8df5b28b4fe26 /src/wallet.cpp
parentMerge pull request #410 from TheBlueMatt/master (diff)
parentFix Build in GetReservedKey() in wallet.cpp (diff)
downloaddiscoin-36cd1ad5c90957608f711f79c7c2d8ef8a05c252.tar.xz
discoin-36cd1ad5c90957608f711f79c7c2d8ef8a05c252.zip
Merge pull request #411 from TheBlueMatt/master
Fix Build in GetReservedKey() in wallet.cpp
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r--src/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.cpp b/src/wallet.cpp
index 60a00e920..2ee918fda 100644
--- a/src/wallet.cpp
+++ b/src/wallet.cpp
@@ -1325,7 +1325,7 @@ vector<unsigned char> CReserveKey::GetReservedKey()
else
{
printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
- vchPubKey = vchDefaultKey;
+ vchPubKey = pwallet->vchDefaultKey;
}
}
assert(!vchPubKey.empty());