added miner API
This commit is contained in:
parent
aa258dcc5f
commit
87dace1fa9
@ -9,7 +9,7 @@ import (
|
||||
)
|
||||
|
||||
const (
|
||||
MinerVersion = "1.0.0"
|
||||
MinerApiVersion = "1.0"
|
||||
)
|
||||
|
||||
var (
|
||||
@ -69,6 +69,10 @@ func (self *minerApi) Name() string {
|
||||
return MinerApiName
|
||||
}
|
||||
|
||||
func (self *minerApi) ApiVersion() string {
|
||||
return MinerApiVersion
|
||||
}
|
||||
|
||||
func (self *minerApi) StartMiner(req *shared.Request) (interface{}, error) {
|
||||
args := new(StartMinerArgs)
|
||||
if err := self.codec.Decode(req.Params, &args); err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user