Skip to content

Commit

Permalink
Merge pull request #33 from AntelopeIO/disable_ship_compression
Browse files Browse the repository at this point in the history
disable state history log file compression
  • Loading branch information
spoonincode authored Apr 16, 2024
2 parents ab66679 + 0d049c8 commit bef48a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ class state_history_log {
{
bio::filtering_ostreambuf buf;
buf.push(boost::ref(cnt));
buf.push(bio::zlib_compressor());
buf.push(bio::zlib_compressor(boost::iostreams::zlib::no_compression));
buf.push(bio::file_descriptor_sink(stream.fileno(), bio::never_close_handle));
pack_to(buf);
}
Expand Down

0 comments on commit bef48a2

Please sign in to comment.