diff options
author | Gregory Maxwell <greg@xiph.org> | 2017-07-15 01:09:10 +0000 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2017-07-17 13:46:14 +0000 |
commit | 41dc1635878766e4a810e6a7c57637d079fced64 (patch) | |
tree | 88803993152289beabd6b7c5904434d4e4afd6d5 /src | |
parent | 30d8f3a18e7d927459e409a38ee1c0d1ddf054ad (diff) |
Increase wallet default keypool size to 1000.
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 0bf6ccf722..9e687c4bfd 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -40,7 +40,7 @@ extern unsigned int nTxConfirmTarget; extern bool bSpendZeroConfChange; extern bool fWalletRbf; -static const unsigned int DEFAULT_KEYPOOL_SIZE = 100; +static const unsigned int DEFAULT_KEYPOOL_SIZE = 1000; //! -paytxfee default static const CAmount DEFAULT_TRANSACTION_FEE = 0; //! -fallbackfee default |