From b6ca44e4143380c29ed334d4db3e8a26504c81ff Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Tue, 21 Mar 2017 11:42:07 -0400 Subject: [PATCH] Lowered highwater mark. --- lib/services/db/sync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/db/sync.js b/lib/services/db/sync.js index 5be7b0c9..d5a019d7 100644 --- a/lib/services/db/sync.js +++ b/lib/services/db/sync.js @@ -64,7 +64,7 @@ function Sync(node, db) { this.node = node; this.db = db; this.syncing = false; - this.highWaterMark = 100; + this.highWaterMark = 10; this.progressBar = null; this.lastReportedBlock = 0; }