github.com/aswedchain/aswed@v1.0.1/consensus/ethash/api.go (about) 1 // Copyright 2018 The go-ethereum Authors 2 // This file is part of the go-ethereum library. 3 // 4 // The go-ethereum library is free software: you can redistribute it and/or modify 5 // it under the terms of the GNU Lesser General Public License as published by 6 // the Free Software Foundation, either version 3 of the License, or 7 // (at your option) any later version. 8 // 9 // The go-ethereum library is distributed in the hope that it will be useful, 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 // GNU Lesser General Public License for more details. 13 // 14 // You should have received a copy of the GNU Lesser General Public License 15 // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. 16 17 package ethash 18 19 import ( 20 "errors" 21 22 "github.com/aswedchain/aswed/common" 23 "github.com/aswedchain/aswed/common/hexutil" 24 "github.com/aswedchain/aswed/core/types" 25 ) 26 27 var errEthashStopped = errors.New("ethash stopped") 28 29 // API exposes ethash related methods for the RPC interface. 30 type API struct { 31 ethash *Ethash 32 } 33 34 // GetWork returns a work package for external miner. 35 // 36 // The work package consists of 3 strings: 37 // result[0] - 32 bytes hex encoded current block header pow-hash 38 // result[1] - 32 bytes hex encoded seed hash used for DAG 39 // result[2] - 32 bytes hex encoded boundary condition ("target"), 2^256/difficulty 40 // result[3] - hex encoded block number 41 func (api *API) GetWork() ([4]string, error) { 42 if api.ethash.remote == nil { 43 return [4]string{}, errors.New("not supported") 44 } 45 46 var ( 47 workCh = make(chan [4]string, 1) 48 errc = make(chan error, 1) 49 ) 50 select { 51 case api.ethash.remote.fetchWorkCh <- &sealWork{errc: errc, res: workCh}: 52 case <-api.ethash.remote.exitCh: 53 return [4]string{}, errEthashStopped 54 } 55 select { 56 case work := <-workCh: 57 return work, nil 58 case err := <-errc: 59 return [4]string{}, err 60 } 61 } 62 63 // SubmitWork can be used by external miner to submit their POW solution. 64 // It returns an indication if the work was accepted. 65 // Note either an invalid solution, a stale work a non-existent work will return false. 66 func (api *API) SubmitWork(nonce types.BlockNonce, hash, digest common.Hash) bool { 67 if api.ethash.remote == nil { 68 return false 69 } 70 71 var errc = make(chan error, 1) 72 select { 73 case api.ethash.remote.submitWorkCh <- &mineResult{ 74 nonce: nonce, 75 mixDigest: digest, 76 hash: hash, 77 errc: errc, 78 }: 79 case <-api.ethash.remote.exitCh: 80 return false 81 } 82 err := <-errc 83 return err == nil 84 } 85 86 // SubmitHashrate can be used for remote miners to submit their hash rate. 87 // This enables the node to report the combined hash rate of all miners 88 // which submit work through this node. 89 // 90 // It accepts the miner hash rate and an identifier which must be unique 91 // between nodes. 92 func (api *API) SubmitHashRate(rate hexutil.Uint64, id common.Hash) bool { 93 if api.ethash.remote == nil { 94 return false 95 } 96 97 var done = make(chan struct{}, 1) 98 select { 99 case api.ethash.remote.submitRateCh <- &hashrate{done: done, rate: uint64(rate), id: id}: 100 case <-api.ethash.remote.exitCh: 101 return false 102 } 103 104 // Block until hash rate submitted successfully. 105 <-done 106 return true 107 } 108 109 // GetHashrate returns the current hashrate for local CPU miner and remote miner. 110 func (api *API) GetHashrate() uint64 { 111 return uint64(api.ethash.Hashrate()) 112 }