Merge #9354: Make fuzzer actually test CTxOutCompressor

5dd626a Make fuzzer actually test CTxOutCompressor (Pieter Wuille)
This commit is contained in:
Wladimir J. van der Laan 2016-12-19 08:49:43 +01:00
commit b416095371
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 2 additions and 2 deletions

View File

@ -240,12 +240,12 @@ int main(int argc, char **argv)
case CTXOUTCOMPRESSOR_DESERIALIZE: case CTXOUTCOMPRESSOR_DESERIALIZE:
{ {
CTxOut to; CTxOut to;
CTxOutCompressor toc(to);
try try
{ {
ds >> to; ds >> toc;
} catch (const std::ios_base::failure& e) {return 0;} } catch (const std::ios_base::failure& e) {return 0;}
CTxOutCompressor toc(to);
break; break;
} }
default: default: