fix: follow-up backport bitcoin#14380 - remove debug logs (#5399)

## Issue being fixed or feature implemented
There are useless debug logs "CDEF" in `wallet_tests` unit tests.

## What was done?
removes it

## How Has This Been Tested?
Run unit/functional tests

## Breaking Changes
n/a


## Checklist:
- [x] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have added or updated relevant unit/integration/functional/e2e
tests
- [ ] I have made corresponding changes to the documentation
- [x] I have assigned this pull request to a milestone
This commit is contained in:
Konstantin Akimov 2023-07-01 18:16:04 +07:00 committed by GitHub
parent d0d4514508
commit 4251d5a10f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1356,7 +1356,6 @@ static size_t CalculateNestedKeyhashInputSize(bool use_max_sig)
static constexpr size_t DUMMY_NESTED_P2PKH_INPUT_SIZE = 113;
BOOST_FIXTURE_TEST_CASE(dummy_input_size_test, TestChain100Setup)
{
std::cerr << "CDEF " << CalculateNestedKeyhashInputSize(false) << std::endl;
BOOST_CHECK_EQUAL(CalculateNestedKeyhashInputSize(false), DUMMY_NESTED_P2PKH_INPUT_SIZE);
BOOST_CHECK_EQUAL(CalculateNestedKeyhashInputSize(true), DUMMY_NESTED_P2PKH_INPUT_SIZE + 1);
}