From 2457dc43acaa54a418eea27034912346b5e1e28a Mon Sep 17 00:00:00 2001 From: Alex Morcos Date: Tue, 12 May 2015 15:42:56 -0400 Subject: [PATCH] Change default nTxConfirmTarget to 2 --- src/wallet/wallet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index a551a9cbb..b0da92cfd 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -45,7 +45,7 @@ static const CAmount nHighTransactionFeeWarning = 0.01 * COIN; //! -maxtxfee default static const CAmount DEFAULT_TRANSACTION_MAXFEE = 0.1 * COIN; //! -txconfirmtarget default -static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 1; +static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 2; //! -maxtxfee will warn if called with a higher fee than this amount (in satoshis) static const CAmount nHighTransactionMaxFeeWarning = 100 * nHighTransactionFeeWarning; //! Largest (in bytes) free transaction we're willing to create