Allow network to be specified in development envs.

This commit is contained in:
Eric Martindale 2014-01-21 23:54:58 +00:00
parent 32ed8497e5
commit 904f21405e
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ module.exports = {
port: process.env.BITCOIND_PORT || '18332', port: process.env.BITCOIND_PORT || '18332',
disableAgent: true, disableAgent: true,
}, },
network: 'testnet', network: process.env.INSIGHT_NETWORK || 'testnet',
disableP2pSync: false, disableP2pSync: false,
disableHistoricSync: false, disableHistoricSync: false,
}; };