Wallet/js/config.js
Matias Alejo Garcia b382e2b99f fix mocha testing!
2014-04-15 18:47:16 -03:00

26 lines
397 B
JavaScript

'use strict';
var config = {
networkName: 'testnet',
network: {
apiKey: 'lwjd5qra8257b9',
maxPeers: 3,
debug: 3,
},
wallet: {
requiredCopayers: 2,
totalCopayers: 3,
},
blockchain: {
host: 'test.insight.is',
port: 80
// host: 'localhost',
// port: 3001
},
verbose: 1,
};
var log = function () {
if (config.verbose) console.log(arguments);
}