Merge pull request #408 from cmgustavo/bug/environment-variable

fixed environment variable for set port of bitcoind and p2p
This commit is contained in:
Mario Colque 2014-02-25 20:08:51 -02:00
commit a60c8e121e
1 changed files with 2 additions and 2 deletions

View File

@ -56,8 +56,8 @@ module.exports = {
user: process.env.BITCOIND_USER || 'user',
pass: process.env.BITCOIND_PASS || 'pass',
host: process.env.BITCOIND_HOST || '127.0.0.1',
port: b_port,
p2pPort: p2p_port,
port: process.env.BITCOIND_PORT || b_port,
p2pPort: process.env.BITCOIND_P2P_PORT || p2p_port,
dataDir: dataDir,
// DO NOT CHANGE THIS!
disableAgent: true