Skip to content

Commit e3c3363

Browse files
committed
wallet: Enable -walletrbf by default
1 parent 31c6309 commit e3c3363

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/wallet/wallet.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ static const bool DEFAULT_WALLET_REJECT_LONG_CHAINS{true};
9999
//! -txconfirmtarget default
100100
static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 6;
101101
//! -walletrbf default
102-
static const bool DEFAULT_WALLET_RBF = false;
102+
static const bool DEFAULT_WALLET_RBF = true;
103103
static const bool DEFAULT_WALLETBROADCAST = true;
104104
static const bool DEFAULT_DISABLE_WALLET = false;
105105
static const bool DEFAULT_WALLETCROSSCHAIN = false;

test/functional/wallet_listtransactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def set_test_params(self):
2525
self.num_nodes = 3
2626
# This test isn't testing txn relay/timing, so set whitelist on the
2727
# peers for instant txn relay. This speeds up the test run time 2-3x.
28-
self.extra_args = [["[email protected]"]] * self.num_nodes
28+
self.extra_args = [["[email protected]", "-walletrbf=0"]] * self.num_nodes
2929

3030
def skip_test_if_missing_module(self):
3131
self.skip_if_no_wallet()

0 commit comments

Comments
 (0)