diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2013-08-14 22:01:22 -0700 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2013-08-14 22:01:22 -0700 |
commit | 4323bfeafda4a5e0101710d94b518d41819a2325 (patch) | |
tree | 6ddfef232d5928bda0e566f55a405a0b8040bf6c /src/wallet.h | |
parent | 5c28d820b613d01c0ebd8cb3ca7196c35b3e9d98 (diff) | |
parent | 36bd46f1c4330fa57a3730bd80706eca11510b55 (diff) |
Merge pull request #2776 from jgarzik/keypoolsize
RPC: keypoolrefill now permits optional size parameter, to bump keypool
Diffstat (limited to 'src/wallet.h')
-rw-r--r-- | src/wallet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet.h b/src/wallet.h index 3474045e32..664a032912 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -202,7 +202,7 @@ public: std::string SendMoneyToDestination(const CTxDestination &address, int64 nValue, CWalletTx& wtxNew, bool fAskFee=false); bool NewKeyPool(); - bool TopUpKeyPool(); + bool TopUpKeyPool(unsigned int kpSize = 0); int64 AddReserveKey(const CKeyPool& keypool); void ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool); void KeepKey(int64 nIndex); @@ -299,7 +299,7 @@ public: } } - int GetKeyPoolSize() + unsigned int GetKeyPoolSize() { return setKeyPool.size(); } |