RWSetScanner provides an iterator for EndorserPvtSimulationResults
| 46 | |
| 47 | // RWSetScanner provides an iterator for EndorserPvtSimulationResults |
| 48 | type RWSetScanner interface { |
| 49 | // Next returns the next EndorserPvtSimulationResults from the RWSetScanner. |
| 50 | // It may return nil, nil when it has no further data, and also may return an error |
| 51 | // on failure |
| 52 | Next() (*EndorserPvtSimulationResults, error) |
| 53 | // Close frees the resources associated with this RWSetScanner |
| 54 | Close() |
| 55 | } |
| 56 | |
| 57 | // EndorserPvtSimulationResults captures the details of the simulation results specific to an endorser |
| 58 | type EndorserPvtSimulationResults struct { |
no outgoing calls
no test coverage detected