diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-11-02 23:33:44 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-11-02 23:36:27 -0700 |
commit | ed0cc50afed146c27f6d8129c683c225fb940093 (patch) | |
tree | bd5efcaf6f89d894c6c7480dc34535b8368a998c /src/wallet | |
parent | c9bdf9a75f9fde8cd011e4aa94be4ed4347078a3 (diff) | |
parent | 0fdf810d267928b4c26a2e2cbb8c02b79e7b0ccb (diff) |
Merge #9036: wallet: Change default confirm target from 2 to 6
0fdf810 wallet: Change default confirm target from 2 to 6 (Wladimir J. van der Laan)
Diffstat (limited to 'src/wallet')
-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 d7d1f5513a..8538e029e5 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -54,7 +54,7 @@ static const bool DEFAULT_SPEND_ZEROCONF_CHANGE = true; //! Default for -sendfreetransactions static const bool DEFAULT_SEND_FREE_TRANSACTIONS = false; //! -txconfirmtarget default -static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 2; +static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 6; //! -walletrbf default static const bool DEFAULT_WALLET_RBF = false; //! Largest (in bytes) free transaction we're willing to create |