-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_config_for_evaluation.txt
73 lines (62 loc) · 4.9 KB
/
node_config_for_evaluation.txt
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
67
68
69
70
71
72
73
/*Our evaluation will consist of different number of nodes, and the
configuration (config.toml in ~/.tendermint/config/) has to be adjusted
as we change the number of nodes. In particulr, we are going to adjust the
persistent_peers setting (in line 76 of config.toml file).*/
/*persistent_peers for 5 nodes (33-37) (node@ip:port can be copied from node_identifier.txt,
which is in the current folder)*/
persistent_peers = """[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656"""
/*persistent_peers for 10 nodes (33-42) (node@ip:port can be copied from node_identifier.txt,
which is in the current folder)*/
persistent_peers = """[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656"""
/*persistent_peers for 15 nodes (33-47) (node@ip:port can be copied from node_identifier.txt,
which is in the current folder)*/
persistent_peers = """[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656"""
/*persistent_peers for 20 nodes (33-52) (node@ip:port can be copied from node_identifier.txt,
which is in the current folder)*/
persistent_peers = """[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656, \
[email protected]:46656"""