config: smaller fast defaults.

This commit is contained in:
Christopher Jeffrey 2017-01-16 19:37:05 -08:00
parent 1e3cc80e2d
commit 4254b4359e
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -234,8 +234,8 @@ config.parseData = function parseData(data, prefix, dirname) {
if (options.fast) {
options.headers = true;
options.useCheckpoints = true;
options.cacheSize = 300 << 20;
options.coinCache = 100 << 20;
options.cacheSize = 200 << 20;
options.coinCache = 65 << 20;
}
return options;