Skip to content

Commit

Permalink
Merge #9354: Make fuzzer actually test CTxOutCompressor
Browse files Browse the repository at this point in the history
5dd626a Make fuzzer actually test CTxOutCompressor (Pieter Wuille)
  • Loading branch information
laanwj committed Dec 19, 2016
2 parents 79da397 + 5dd626a commit b416095
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/test_bitcoin_fuzzy.cpp
Expand Up @@ -240,12 +240,12 @@ int main(int argc, char **argv)
case CTXOUTCOMPRESSOR_DESERIALIZE:
{
CTxOut to;
CTxOutCompressor toc(to);
try
{
ds >> to;
ds >> toc;
} catch (const std::ios_base::failure& e) {return 0;}

CTxOutCompressor toc(to);
break;
}
default:
Expand Down

0 comments on commit b416095

Please sign in to comment.