diff options
| author | Gregory Maxwell <[email protected]> | 2017-07-15 01:09:10 +0000 |
|---|---|---|
| committer | Gregory Maxwell <[email protected]> | 2017-07-17 13:46:14 +0000 |
| commit | 41dc1635878766e4a810e6a7c57637d079fced64 (patch) | |
| tree | 88803993152289beabd6b7c5904434d4e4afd6d5 /src | |
| parent | Pushdown walletdb though CWallet::AddKeyPubKey to avoid flushes. (diff) | |
| download | discoin-41dc1635878766e4a810e6a7c57637d079fced64.tar.xz discoin-41dc1635878766e4a810e6a7c57637d079fced64.zip | |
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 0bf6ccf72..9e687c4bf 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 |