(hashrate hexutil.Uint64, id common.Hash)
| 21 | } |
| 22 | |
| 23 | func (nc *NetworkClient) SubmitHashrate(hashrate hexutil.Uint64, id common.Hash) bool { |
| 24 | return nc.rpc.SubmitHashrate(hashrate, id) |
| 25 | } |
| 26 | |
| 27 | func (nc *NetworkClient) SubmitSolution(s smartpool.Solution) bool { |
| 28 | sol := s.(*Solution) |
nothing calls this directly
no test coverage detected