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', }