diff options
author | Gregory Maxwell <greg@xiph.org> | 2013-08-28 11:20:09 -0700 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2013-08-28 11:20:09 -0700 |
commit | 1ef0067eab27b9101641b28acc177038e3dae11d (patch) | |
tree | 5115dbf26fe82b3e1a2567e2ead8ca74339ed5cf /src/wallet.h | |
parent | bb7d0fc12fcfbb2a91e39cb49f2a0873344dbae0 (diff) | |
parent | 71ac5052d83fcba21a09e5e2b7ad66faea6bd42a (diff) |
Merge pull request #2904 from gmaxwell/newaddr-no-passphrase
[QT] Don't ask for a passphrase to getnewaddress.
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 d47416d272..d61548433e 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -220,7 +220,7 @@ public: void ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool); void KeepKey(int64 nIndex); void ReturnKey(int64 nIndex); - bool GetKeyFromPool(CPubKey &key, bool fAllowReuse=true); + bool GetKeyFromPool(CPubKey &key); int64 GetOldestKeyPoolTime(); void GetAllReserveKeys(std::set<CKeyID>& setAddress) const; |