aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Morcos <morcos@chaincode.com>2015-05-12 15:42:56 -0400
committerWladimir J. van der Laan <laanwj@gmail.com>2015-05-18 09:01:30 +0200
commit2457dc43acaa54a418eea27034912346b5e1e28a (patch)
tree439366f5693efb1ac5d1225af68d23f5719a59e3 /src
parent77ed59df4d61ea076292a650079b305e6a9688df (diff)
downloadbitcoin-2457dc43acaa54a418eea27034912346b5e1e28a.tar.xz
Change default nTxConfirmTarget to 2
Diffstat (limited to 'src')
-rw-r--r--src/wallet/wallet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index a551a9cbb2..b0da92cfd1 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