aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-05-18 08:51:16 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2015-05-18 09:00:24 +0200
commit77ed59df4d61ea076292a650079b305e6a9688df (patch)
tree2cccc21d272dbd1f6ea941f7cbb34f25fc41c3f2 /src/wallet/wallet.h
parenta6d2e31e8bd50ec6c0b359a2fdb2b368be3f46c6 (diff)
downloadbitcoin-77ed59df4d61ea076292a650079b305e6a9688df.tar.xz
wallet: Introduce constant for `-txconfirmtarget` default
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index 1c900b0315..a551a9cbb2 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -44,6 +44,8 @@ static const CAmount DEFAULT_TRANSACTION_FEE = 0;
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;
//! -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