lower limits.

This commit is contained in:
Christopher Jeffrey 2016-02-19 09:13:18 -08:00
parent a6668f860f
commit a558cbfb57

View File

@ -47,8 +47,8 @@ function Chain(options) {
this.pendingBlocks = {};
this.pendingSize = 0;
this.total = 0;
this.orphanLimit = options.orphanLimit || 20 * 1024 * 1024;
this.pendingLimit = options.pendingLimit || 20 * 1024 * 1024;
this.orphanLimit = options.orphanLimit || 10 * 1024 * 1024;
this.pendingLimit = options.pendingLimit || 10 * 1024 * 1024;
this.invalid = {};
this.bestHeight = -1;