From a558cbfb57cca01c897ea3576ef0e4e13bd4cd9b Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 19 Feb 2016 09:13:18 -0800 Subject: [PATCH] lower limits. --- lib/bcoin/chain.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/bcoin/chain.js b/lib/bcoin/chain.js index db60f353..5c25cec0 100644 --- a/lib/bcoin/chain.js +++ b/lib/bcoin/chain.js @@ -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;