From 60a2dfa1c21eea4d71bc08c0b7ccba9f807aed15 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Thu, 16 Jan 2014 10:51:20 -0300 Subject: [PATCH] use new bitcore RpcClient flahs --- config/env/development.js | 1 + config/env/test.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/env/development.js b/config/env/development.js index 3439a60..0d4e6c1 100755 --- a/config/env/development.js +++ b/config/env/development.js @@ -11,6 +11,7 @@ module.exports = { pass: process.env.BITCOIND_PASS || 'real_mystery', host: process.env.BITCOIND_HOST || '127.0.0.1', port: process.env.BITCOIND_PORT || '18332', + disableAgent: true, }, network: 'testnet', } diff --git a/config/env/test.js b/config/env/test.js index 6f34e9a..abebba3 100755 --- a/config/env/test.js +++ b/config/env/test.js @@ -12,7 +12,7 @@ module.exports = { pass: process.env.BITCOIND_PASS || 'real_mystery', host: process.env.BITCOIND_HOST || '127.0.0.1', port: process.env.BITCOIND_PORT || '18332', - keepConnectionAlive: false, + disableAgent: true, }, network: 'testnet', }