-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconf_dev.js
More file actions
52 lines (39 loc) · 1.22 KB
/
conf_dev.js
File metadata and controls
52 lines (39 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*jslint node: true */
"use strict";
/**
* for version control
*/
exports.clientName = 'rng-supernode';
exports.minClientVersion = '1.1.0';
exports.WS_PROTOCOL = 'ws://';
// https://console.developers.google.com
exports.pushApiProjectNumber = 0;
exports.pushApiKey = '';
exports.port = 9193;
//exports.myUrl = 'ws://10.10.11.68:9191';
exports.bServeAsHub = true;
exports.bSaveJointJson = true;
exports.bLight = false;
exports.bServeAsRpc = true;
exports.rpcInterface = '127.0.0.1';
exports.rpcPort = 6553;
exports.debug = false;
// this is used by wallet vendor only, to redirect bug reports to developers' email
exports.bug_sink_email = 'admin@example.org';
exports.bugs_from_email = 'bugs@example.org';
exports.HEARTBEAT_TIMEOUT = 300*1000;
exports.initial_peers = [
"ws://dev.mainchain.pow.ringnetwork.org:9193",
];
exports.storage = 'sqlite';
exports.deviceName = 'Supernode';
exports.permanent_pairing_secret = 'randomstring';
exports.safe_address = null;
exports.bSingleAddress = true;
exports.THRESHOLD_DISTANCE = 6;
exports.MIN_AVAILABLE_WITNESSINGS = 100;
exports.bPostTimestamp = false;
exports.start_mining_round = 0;
exports.maxWorkderCount = 0;
exports.KEYS_FILENAME = 'keys.json';
console.log('finished witness conf');