File tree Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Expand file tree Collapse file tree 2 files changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ FUZZ_TARGETS = \
23
23
test/fuzz/script_flags \
24
24
test/fuzz/service_deserialize \
25
25
test/fuzz/transaction \
26
- test/fuzz/transaction_deserialize \
27
26
test/fuzz/txoutcompressor_deserialize \
28
27
test/fuzz/txundo_deserialize
29
28
@@ -203,12 +202,6 @@ test_fuzz_block_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
203
202
test_fuzz_block_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
204
203
test_fuzz_block_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
205
204
206
- test_fuzz_transaction_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
207
- test_fuzz_transaction_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DTRANSACTION_DESERIALIZE=1
208
- test_fuzz_transaction_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
209
- test_fuzz_transaction_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
210
- test_fuzz_transaction_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
211
-
212
205
test_fuzz_blocklocator_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
213
206
test_fuzz_blocklocator_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOCKLOCATOR_DESERIALIZE=1
214
207
test_fuzz_blocklocator_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
Original file line number Diff line number Diff line change @@ -40,11 +40,6 @@ void test_one_input(const std::vector<uint8_t>& buffer)
40
40
CBlock block;
41
41
ds >> block;
42
42
} catch (const std::ios_base::failure& e) {return ;}
43
- #elif TRANSACTION_DESERIALIZE
44
- try
45
- {
46
- CTransaction tx (deserialize, ds);
47
- } catch (const std::ios_base::failure& e) {return ;}
48
43
#elif BLOCKLOCATOR_DESERIALIZE
49
44
try
50
45
{
You can’t perform that action at this time.
0 commit comments