WorkID returns the ID to identify the work it is trying to solve
()
| 118 | type Solution interface { |
| 119 | // WorkID returns the ID to identify the work it is trying to solve |
| 120 | WorkID() string |
| 121 | } |
| 122 | |
| 123 | // Share represent a solution of a Work that comes from the miner. |