| 15 | ) |
| 16 | |
| 17 | type LastBlockChecker struct { |
| 18 | Name string `json:"name"` |
| 19 | EmailTo string `json:"email-to"` |
| 20 | RPC string `json:"rpc"` |
| 21 | } |
| 22 | |
| 23 | func newLastBlockChecker(params map[string]string, emailTo string) (*LastBlockChecker, error) { |
| 24 | name, rpc := params["name"], params["rpc"] |
nothing calls this directly
no outgoing calls
no test coverage detected