-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathworkflow.example.json
More file actions
31 lines (31 loc) · 823 Bytes
/
Copy pathworkflow.example.json
File metadata and controls
31 lines (31 loc) · 823 Bytes
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
{
"workflow_sample_1": {
"description": "Sample workflow for demonstration purposes",
"steps": [
{
"name": "step_1",
"id": 1,
"body": {
"method": "mining.notify",
"params": ["job_001", "aabbcc"]
}
},
{
"name": "step_2",
"id": 2,
"body": {
"method": "mining.set_difficulty",
"params": [1.0]
}
},
{
"name": "step_3",
"id": 3,
"body": {
"method": "mining.set_extranonce",
"params": [1.0, "abcd1234"]
}
}
]
}
}