copay/js/config.js

25 lines
346 B
JavaScript
Raw Normal View History

2014-03-14 13:38:27 -07:00
'use strict';
2014-04-07 20:54:38 -07:00
var config = {
networkName: 'testnet',
2014-04-15 08:17:28 -07:00
network: {
apiKey: 'lwjd5qra8257b9',
maxPeers: 3,
2014-04-15 10:28:49 -07:00
debug: 0,
2014-04-15 08:17:28 -07:00
},
2014-04-15 06:22:50 -07:00
wallet: {
requiredCopayers: 2,
totalCopayers: 3,
},
2014-04-14 13:17:56 -07:00
insight: {
host: 'localhost',
port: 3001
},
2014-04-15 10:28:49 -07:00
verbose: 0,
2014-04-07 20:54:38 -07:00
};
2014-04-15 10:28:49 -07:00
var log = function () {
if (config.verbose) console.log(arguments);
}