Skip to content

Commit 49db42c

Browse files
committed
[test] make tx6 child of tx5, not tx3, in rbf_tests
There is no effect on the test results because tx3 and tx5 pay the say fee, but this was the intended configuration, as the comment suggests.
1 parent 0094ff3 commit 49db42c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/rbf_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ BOOST_FIXTURE_TEST_CASE(rbf_helper_functions, TestChain100Setup)
7676
// Create a parent tx5 and child tx6 where both have very low fees
7777
const auto tx5 = make_tx(/*inputs=*/ {m_coinbase_txns[2]}, /*output_values=*/ {1099 * CENT});
7878
pool.addUnchecked(entry.Fee(low_fee).FromTx(tx5));
79-
const auto tx6 = make_tx(/*inputs=*/ {tx3}, /*output_values=*/ {1098 * CENT});
79+
const auto tx6 = make_tx(/*inputs=*/ {tx5}, /*output_values=*/ {1098 * CENT});
8080
pool.addUnchecked(entry.Fee(low_fee).FromTx(tx6));
8181
// Make tx6's modified fee much higher than its base fee. This should cause it to pass
8282
// the fee-related checks despite being low-feerate.

0 commit comments

Comments
 (0)