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:
--- a/src/test/amount_tests.cpp
+++ b/src/test/amount_tests.cpp
@@ -26,7 +26,7 @@ BOOST_AUTO_TEST_CASE(GetFeeTest)
feeRate = CFeeRate(0);
// Must always return 0
- BOOST_CHECK_EQUAL(feeRate.GetFee(0), CAmount(0));
+ BOOST_CHECK_EQUAL(feeRate.GetFee(0), CAmount(1));
BOOST_CHECK_EQUAL(feeRate.GetFee(1e5), CAmount(0));
feeRate = CFeeRate(1000);
and make check twice -- in-tree and out-of-tree.
utACK 8b517fae7eb229911a5d41bbe26fbf6cc7de46df
(No opinion on reformatting)