-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.json
More file actions
52 lines (52 loc) · 1.33 KB
/
config.json
File metadata and controls
52 lines (52 loc) · 1.33 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
{
"output": "results.json",
"blocks": 100000,
"seed": 120,
"network_difficulty": 10000,
"pools": [{
"uncle_block_prob": 0.0,
"difficulty": 10,
"reward_scheme": {
"type": "pplns",
"params": {
"n": 200,
"pool_fee": 0
}
},
"miners": [{
"generator": "csv",
"params": {
"behavior": {"name": "default"},
"path": "tests/fixtures/sample_miners.csv"
}
}]
}, {
"uncle_block_prob": 0.0,
"difficulty": 20,
"reward_scheme": {
"type": "qb",
"params": {
"pool_fee": 0.05
}
},
"miners": [{
"generator": "random",
"params": {
"behavior": {"name": "default"},
"hashrate": {
"distribution": "normal",
"params": {
"mean": 10.0,
"stddev": 2.0,
"minimum": 0.1,
"maximum": 40.0
}
},
"stop_condition": {
"type": "total_hashrate",
"params": {"value": 100}
}
}
}]
}]
}