diff options
author | MarcoFalke <falke.marco@gmail.com> | 2015-11-09 19:16:38 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2015-11-28 19:01:11 +0100 |
commit | faf93f37fe47fe326fcc4955302a66f24eb13b65 (patch) | |
tree | a1f2ed7942c30233341f58f85cff6eaf2e14cb5e /src/wallet/wallet.h | |
parent | 3307bdb3331732e781c77a88ef7053fe23c78701 (diff) |
[trivial] Reuse translation and cleanup DEFAULT_* values
* DEFAULT_DISABLE_SAFEMODE = false
* Use DEFAULT_* constants for extern bools
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 2fd3b4cabd..a4199488fc 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -48,6 +48,10 @@ static const CAmount DEFAULT_TRANSACTION_MINFEE = 1000; static const CAmount DEFAULT_TRANSACTION_MAXFEE = 0.1 * COIN; //! minimum change amount static const CAmount MIN_CHANGE = CENT; +//! Default for -spendzeroconfchange +static const bool DEFAULT_SPEND_ZEROCONF_CHANGE = true; +//! Default for -sendfreetransactions +static const bool DEFAULT_SEND_FREE_TRANSACTIONS = false; //! -txconfirmtarget default static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 2; //! -maxtxfee will warn if called with a higher fee than this amount (in satoshis) |