Documentation ¶
Index ¶
- type API
- func (api *API) GetHashrate() uint64
- func (api *API) SetEtherbase(etherbase common.Address) bool
- func (api *API) SetExtra(_ string) (bool, error)
- func (api *API) SetGasLimit(_ hexutil.Uint64) bool
- func (api *API) SetGasPrice(gasPrice hexutil.Big) bool
- func (api *API) Start(_ *int) error
- func (api *API) Stop()
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type API ¶
type API struct {
// contains filtered or unexported fields
}
API is the private miner prefixed set of APIs in the Miner JSON-RPC spec.
func NewPrivateAPI ¶
func NewPrivateAPI( ctx *server.Context, backend backend.EVMBackend, ) *API
NewPrivateAPI creates an instance of the Miner API.
func (*API) GetHashrate ¶
GetHashrate returns the current hashrate for local CPU miner and remote miner. Unsupported in xtechain
func (*API) SetEtherbase ¶
SetEtherbase sets the etherbase of the miner
func (*API) SetExtra ¶
SetExtra sets the extra data string that is included when this miner mines a block. Unsupported in xtechain
func (*API) SetGasLimit ¶
SetGasLimit sets the gaslimit to target towards during mining. Unsupported in xtechain
func (*API) SetGasPrice ¶
SetGasPrice sets the minimum accepted gas price for the miner.
func (*API) Start ¶
Start starts the miner with the given number of threads. If threads is nil, the number of workers started is equal to the number of logical CPUs that are usable by this process. If mining is already running, this method adjust the number of threads allowed to use and updates the minimum price required by the transaction pool. Unsupported in xtechain