Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
skyd
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Skynet Labs
skyd
Commits
72355ded
Unverified
Commit
72355ded
authored
7 years ago
by
Christopher Schinnerl
Browse files
Options
Downloads
Patches
Plain Diff
add client wrapper for /miner/start
parent
2ad66255
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
node/api/client/miner.go
+6
-0
6 additions, 0 deletions
node/api/client/miner.go
with
6 additions
and
0 deletions
node/api/client/miner.go
+
6
−
0
View file @
72355ded
...
...
@@ -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
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment