Merge c1607b5df4 into merged_master (Bitcoin PR #17957)

This commit is contained in:
Andrew Poelstra 2020-11-14 16:52:13 +00:00
commit 0feee2ea2d
6 changed files with 87 additions and 68 deletions

View file

@ -206,7 +206,7 @@ void test_one_input(const std::vector<uint8_t>& buffer)
DeserializeFromFuzzingInput(buffer, dbi);
#elif TXOUTCOMPRESSOR_DESERIALIZE
CTxOut to;
CTxOutCompressor toc(to);
auto toc = Using<TxOutCompression>(to);
DeserializeFromFuzzingInput(buffer, toc);
#elif BLOCKTRANSACTIONS_DESERIALIZE
BlockTransactions bt;