diff options
author | dergoegge <n.goeggi@gmail.com> | 2022-11-15 11:18:03 +0000 |
---|---|---|
committer | dergoegge <n.goeggi@gmail.com> | 2022-11-17 14:52:45 +0000 |
commit | 0eeb9b0442fb2f2da33c04704eefe6a84d28e981 (patch) | |
tree | 52123c0bd868973f26ee18a640a9a30aa851c090 /src/Makefile.test_fuzz.include | |
parent | 291c8697d4be0f38635b67880107e39d3ec585ad (diff) |
[fuzz] Move ConsumeNetAddr to fuzz/util/net.h
Diffstat (limited to 'src/Makefile.test_fuzz.include')
-rw-r--r-- | src/Makefile.test_fuzz.include | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.test_fuzz.include b/src/Makefile.test_fuzz.include index b35d713d57..aa9c052750 100644 --- a/src/Makefile.test_fuzz.include +++ b/src/Makefile.test_fuzz.include @@ -11,7 +11,8 @@ TEST_FUZZ_H = \ test/fuzz/fuzz.h \ test/fuzz/FuzzedDataProvider.h \ test/fuzz/util.h \ - test/fuzz/util/mempool.h + test/fuzz/util/mempool.h \ + test/fuzz/util/net.h libtest_fuzz_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(BOOST_CPPFLAGS) libtest_fuzz_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) @@ -19,4 +20,5 @@ libtest_fuzz_a_SOURCES = \ test/fuzz/fuzz.cpp \ test/fuzz/util.cpp \ test/fuzz/util/mempool.cpp \ + test/fuzz/util/net.cpp \ $(TEST_FUZZ_H) |