Skip to content
Snippets Groups Projects
Unverified Commit 72355ded authored by Christopher Schinnerl's avatar Christopher Schinnerl
Browse files

add client wrapper for /miner/start

parent 2ad66255
No related branches found
No related tags found
Loading
......@@ -21,3 +21,9 @@ func (c *Client) MinerHeaderPost(bh types.BlockHeader) (err error) {
err = c.post("/miner/header", string(encoding.Marshal(bh)), nil)
return
}
// MinerStartGet uses the /miner/start endpoint to start the cpu miner.
func (c *Client) MinerStartGet() (err error) {
err = c.get("/miner/start", nil)
return
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment