Wallet/js/config.js

24 lines
346 B
JavaScript
Raw Normal View History

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