diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2013-04-25 19:30:28 +0200 |
---|---|---|
committer | Pieter Wuille <pieterw@google.com> | 2013-04-25 19:36:10 +0200 |
commit | 360cfe142c552ac5c4d904a1e970390188151ca8 (patch) | |
tree | 4e8232b61d597b9720cbb98a54d07690324b6c3b /src/wallet.h | |
parent | 77a1e12eed5fc66dce16584696f54988a8c2bf4e (diff) |
Allow the default key to be unavailable
This solves the issue where no default key can be added after -salvagewallet.
Diffstat (limited to 'src/wallet.h')
-rw-r--r-- | src/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet.h b/src/wallet.h index 2e007557b0..55200476ae 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -331,7 +331,7 @@ public: } void ReturnKey(); - CPubKey GetReservedKey(); + bool GetReservedKey(CPubKey &pubkey); void KeepKey(); }; |