chaindb: compression=true.

This commit is contained in:
Christopher Jeffrey 2016-12-05 11:36:55 -08:00
parent 01535c55d7
commit 07a34bbfe5
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -65,7 +65,7 @@ function ChainDB(chain) {
db: chain.options.db,
maxFiles: chain.options.maxFiles,
cacheSize: chain.options.cacheSize || (32 << 20),
compression: false,
compression: true,
bufferKeys: !util.isBrowser
});