Skip to content

Commit 0fdf810

Browse files
committed
wallet: Change default confirm target from 2 to 6
Recent discussion (in IRC meetings, and e.g. #8989) has shown a preference for the default confirm target for smartfees to be 6 instead of 2, to avoid overpaying fees for questionable gain. 6 is also a compromise between the GUI's pre-#8989 value of 25 and the bitcoind `-txconfirmtarget` default of 2. These were unified in #8989, but this has made the (overly expensive) default of 2 as GUI default.
1 parent d2143dc commit 0fdf810

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/wallet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ static const bool DEFAULT_SPEND_ZEROCONF_CHANGE = true;
5353
//! Default for -sendfreetransactions
5454
static const bool DEFAULT_SEND_FREE_TRANSACTIONS = false;
5555
//! -txconfirmtarget default
56-
static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 2;
56+
static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 6;
5757
//! -walletrbf default
5858
static const bool DEFAULT_WALLET_RBF = false;
5959
//! Largest (in bytes) free transaction we're willing to create

0 commit comments

Comments
 (0)