From f59a1f887baecfa87794059177b7aeb8014dc809 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sat, 30 Jan 2016 02:13:28 -0800 Subject: [PATCH] increase requestTimeout. --- lib/bcoin/pool.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bcoin/pool.js b/lib/bcoin/pool.js index 8a9235e5..adbae8ae 100644 --- a/lib/bcoin/pool.js +++ b/lib/bcoin/pool.js @@ -88,7 +88,7 @@ function Pool(options) { interval: options.loadInterval || 5000 }; - this.requestTimeout = options.requestTimeout || 30000; + this.requestTimeout = options.requestTimeout || 600000; this.chain = new bcoin.chain({ fullNode: this.options.fullNode,