| 1595 | // ---------------------------------------------------------------------------- |
| 1596 | |
| 1597 | bool VanitySearch::hasStarted(TH_PARAM *p) { |
| 1598 | |
| 1599 | bool hasStarted = true; |
| 1600 | int total = nbCPUThread + nbGPUThread; |
| 1601 | for (int i = 0; i < total; i++) |
| 1602 | hasStarted = hasStarted && p[i].hasStarted; |
| 1603 | |
| 1604 | return hasStarted; |
| 1605 | |
| 1606 | } |
| 1607 | |
| 1608 | // ---------------------------------------------------------------------------- |
| 1609 |
nothing calls this directly
no outgoing calls
no test coverage detected