aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-09-01 15:24:45 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2016-09-13 11:32:29 +0200
commit86726d8680c3398c41e62924588c44f4a394367e (patch)
tree4df82802604c63d985627350b2c6fa00bb7e96f8 /src/wallet/wallet.h
parent05fa823bf60d21049caebc64dd5c5add8ba4ee10 (diff)
downloadbitcoin-86726d8680c3398c41e62924588c44f4a394367e.tar.xz
Rename `-optintofullrbf` option to `-walletrbf`
This makes it clear that this is a wallet option.
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index 5d93d2c4d9..220b1e52b5 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -37,7 +37,7 @@ extern CFeeRate payTxFee;
extern unsigned int nTxConfirmTarget;
extern bool bSpendZeroConfChange;
extern bool fSendFreeTransactions;
-extern bool fOptIntoFullRbf;
+extern bool fWalletRbf;
static const unsigned int DEFAULT_KEYPOOL_SIZE = 100;
//! -paytxfee default
@@ -54,8 +54,8 @@ static const bool DEFAULT_SPEND_ZEROCONF_CHANGE = true;
static const bool DEFAULT_SEND_FREE_TRANSACTIONS = false;
//! -txconfirmtarget default
static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 2;
-//! -optintofullrbf default
-static const bool DEFAULT_OPT_INTO_FULL_RBF = false;
+//! -walletrbf default
+static const bool DEFAULT_WALLET_RBF = false;
//! Largest (in bytes) free transaction we're willing to create
static const unsigned int MAX_FREE_TRANSACTION_CREATE_SIZE = 1000;
static const bool DEFAULT_WALLETBROADCAST = true;