diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2024-08-15 08:53:56 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2024-08-15 08:53:04 +0200 |
commit | fa645c7a861ffa83a53a459263b6a620defe31f9 (patch) | |
tree | ac6ab341fabba911b1309873ff26245215a4ed56 /src | |
parent | fae8c73d9e4eba4603447bb52b6e3e760fbf15f8 (diff) |
fuzz: Remove unused DataStream object
Diffstat (limited to 'src')
-rw-r--r-- | src/test/fuzz/utxo_snapshot.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/fuzz/utxo_snapshot.cpp b/src/test/fuzz/utxo_snapshot.cpp index d82f166765..7401a613b7 100644 --- a/src/test/fuzz/utxo_snapshot.cpp +++ b/src/test/fuzz/utxo_snapshot.cpp @@ -52,7 +52,6 @@ FUZZ_TARGET(utxo_snapshot, .init = initialize_chain) std::vector<uint8_t> metadata{ConsumeRandomLengthByteVector(fuzzed_data_provider)}; outfile << Span{metadata}; } else { - DataStream data_stream{}; auto msg_start = chainman.GetParams().MessageStart(); int base_blockheight{fuzzed_data_provider.ConsumeIntegralInRange<int>(1, 2 * COINBASE_MATURITY)}; uint256 base_blockhash{g_chain->at(base_blockheight - 1)->GetHash()}; |