diff options
author | glozow <gloriajzhao@gmail.com> | 2022-03-08 11:07:39 +0000 |
---|---|---|
committer | glozow <gloriajzhao@gmail.com> | 2022-03-25 16:02:37 +0000 |
commit | da2bc865d644f6be748c305556bdd02f02d1b161 (patch) | |
tree | 3f3837c1337e0a6221d38cf9bbece568591ede61 /src | |
parent | c9ed9927bbb7c422c4e01c0c1adc9722b8671009 (diff) |
[wallet] don't create long chains by default
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 e2c5c69c91..0df100fe86 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -95,7 +95,7 @@ static const CAmount WALLET_INCREMENTAL_RELAY_FEE = 5000; //! Default for -spendzeroconfchange static const bool DEFAULT_SPEND_ZEROCONF_CHANGE = true; //! Default for -walletrejectlongchains -static const bool DEFAULT_WALLET_REJECT_LONG_CHAINS = false; +static const bool DEFAULT_WALLET_REJECT_LONG_CHAINS{true}; //! -txconfirmtarget default static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 6; //! -walletrbf default |