diff options
author | Matt Corallo <matt@bluematt.me> | 2011-07-14 03:31:45 +0200 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2011-07-14 03:34:07 +0200 |
commit | a2606bad095396e836a48f4097e0abcdea314340 (patch) | |
tree | 106c849a4e7c7bfe236f39b8cbf8df5b28b4fe26 /src/wallet.cpp | |
parent | cee69980b0ebe05b8327bf1d6cafb12a8f7f718c (diff) |
Fix Build in GetReservedKey() in wallet.cpp
Diffstat (limited to 'src/wallet.cpp')
-rw-r--r-- | src/wallet.cpp | 2 |
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()); |