-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathrecover_config.json
More file actions
66 lines (66 loc) · 1.62 KB
/
recover_config.json
File metadata and controls
66 lines (66 loc) · 1.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"network": {
"node_to_node_interface": { "bind_address": "127.0.0.1:8081" },
"rpc_interfaces": {
"primary_rpc_interface": {
"bind_address": "127.0.0.1:8080",
"published_address": "ccf.dummy.com:12345",
"max_open_sessions_soft": 1000,
"max_open_sessions_hard": 1010
}
}
},
"node_certificate": {
"subject_name": "CN=CCF Node",
"subject_alt_names": ["iPAddress:127.0.0.1", "dNSName:ccf.dummy.com"],
"curve_id": "Secp384R1",
"initial_validity_days": 1
},
"command": {
"type": "Recover",
"service_certificate_file": "service_cert.pem",
"recover": {
"initial_service_certificate_validity_days": 1,
"previous_service_identity_file": "previous_service_cert.pem"
}
},
"ledger": {
"directory": "ledger",
"read_only_directories": [],
"chunk_size": "5MB"
},
"snapshots": {
"directory": "snapshots",
"tx_count": 10000
},
"logging": {
"format": "Text"
},
"consensus": {
"message_timeout": "100ms",
"election_timeout": "4000ms"
},
"ledger_signatures": {
"tx_count": 5000,
"delay": "1s",
"mode": "Dual"
},
"jwt": {
"key_refresh_interval": "30min"
},
"output_files": {
"node_certificate_file": "node.pem",
"pid_file": "node.pid",
"node_to_node_address_file": "node.node_address",
"rpc_addresses_file": "node.rpc_addresses"
},
"tick_interval": "1ms",
"slow_io_logging_threshold": "10000us",
"client_connection_timeout": "2000ms",
"worker_threads": 0,
"memory": {
"circuit_size": "16MB",
"max_msg_size": "64MB",
"max_fragment_size": "256KB"
}
}