We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0094ff3 commit 49db42cCopy full SHA for 49db42c
src/test/rbf_tests.cpp
@@ -76,7 +76,7 @@ BOOST_FIXTURE_TEST_CASE(rbf_helper_functions, TestChain100Setup)
76
// Create a parent tx5 and child tx6 where both have very low fees
77
const auto tx5 = make_tx(/*inputs=*/ {m_coinbase_txns[2]}, /*output_values=*/ {1099 * CENT});
78
pool.addUnchecked(entry.Fee(low_fee).FromTx(tx5));
79
- const auto tx6 = make_tx(/*inputs=*/ {tx3}, /*output_values=*/ {1098 * CENT});
+ const auto tx6 = make_tx(/*inputs=*/ {tx5}, /*output_values=*/ {1098 * CENT});
80
pool.addUnchecked(entry.Fee(low_fee).FromTx(tx6));
81
// Make tx6's modified fee much higher than its base fee. This should cause it to pass
82
// the fee-related checks despite being low-feerate.
0 commit comments