diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2020-02-24 14:34:17 -0500 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2020-03-31 08:36:02 -0500 |
commit | bf30cd4922ea62577d7bf63f5029e8be62665d45 (patch) | |
tree | 73c53b3583a3870d5620ff06cc724f2b944029e5 /src/Makefile.test.include | |
parent | d52ba21dfff99173abb927bc964ce7ceb711d789 (diff) |
refactor: Add interfaces::FoundBlock class to selectively return block data
FoundBlock class allows interfaces::Chain::findBlock to return more block
information without having lots of optional output parameters. FoundBlock class
is also used by other chain methods in upcoming commits.
There is mostly no change in behavior. Only exception is
CWallet::RescanFromTime now throwing NonFatalCheckError instead of
std::logic_error.
Diffstat (limited to 'src/Makefile.test.include')
-rw-r--r-- | src/Makefile.test.include | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 059876bec8..a4d8946807 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -198,6 +198,7 @@ BITCOIN_TESTS =\ test/fs_tests.cpp \ test/getarg_tests.cpp \ test/hash_tests.cpp \ + test/interfaces_tests.cpp \ test/key_io_tests.cpp \ test/key_tests.cpp \ test/limitedmap_tests.cpp \ |