Recently merged bitcoin/bitcoin#19385 was flawed as it tries to cat
a non-existed logfile:
Closes bitcoin/bitcoin#17224.
Recently merged bitcoin/bitcoin#19385 was flawed as it tries to cat
a non-existed logfile:
Closes bitcoin/bitcoin#17224.
Co-authored-by: Luke Dashjr <luke-jr+git@utopios.org>
To test this PR, break any test, for instance:
0--- a/src/test/amount_tests.cpp
1+++ b/src/test/amount_tests.cpp
2@@ -26,7 +26,7 @@ BOOST_AUTO_TEST_CASE(GetFeeTest)
3
4 feeRate = CFeeRate(0);
5 // Must always return 0
6- BOOST_CHECK_EQUAL(feeRate.GetFee(0), CAmount(0));
7+ BOOST_CHECK_EQUAL(feeRate.GetFee(0), CAmount(1));
8 BOOST_CHECK_EQUAL(feeRate.GetFee(1e5), CAmount(0));
9
10 feeRate = CFeeRate(1000);
and make check
twice – in-tree and out-of-tree.
utACK 8b517fae7eb229911a5d41bbe26fbf6cc7de46df
(No opinion on reformatting)
Labels
Build system