aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.cpp
diff options
context:
space:
mode:
authorMatt Corallo <matt@bluematt.me>2011-07-14 03:31:45 +0200
committerMatt Corallo <matt@bluematt.me>2011-07-14 03:34:07 +0200
commita2606bad095396e836a48f4097e0abcdea314340 (patch)
tree106c849a4e7c7bfe236f39b8cbf8df5b28b4fe26 /src/wallet.cpp
parentcee69980b0ebe05b8327bf1d6cafb12a8f7f718c (diff)
downloadbitcoin-a2606bad095396e836a48f4097e0abcdea314340.tar.xz
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 60a00e9208..2ee918fdab 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());