| 7 | ) |
| 8 | |
| 9 | type Input struct { |
| 10 | rpcEndPoint string |
| 11 | keystorePath string |
| 12 | shareThreshold int |
| 13 | shareDifficulty *big.Int |
| 14 | submitInterval time.Duration |
| 15 | contractAddr string |
| 16 | minerAddr string |
| 17 | extraData string |
| 18 | hotStop bool |
| 19 | } |
| 20 | |
| 21 | func (i *Input) RPCEndpoint() string { return i.rpcEndPoint } |
| 22 | func (i *Input) KeystorePath() string { return i.keystorePath } |
nothing calls this directly
no outgoing calls
no test coverage detected