forked from cerc-io/plugeth
Merge pull request #2170 from karalabe/fix-miner-registration
miner: register newly created remote agent in the API
This commit is contained in:
commit
db056eeafe
@ -33,7 +33,10 @@ type PublicMinerAPI struct {
|
|||||||
|
|
||||||
// NewPublicMinerAPI create a new PublicMinerAPI instance.
|
// NewPublicMinerAPI create a new PublicMinerAPI instance.
|
||||||
func NewPublicMinerAPI(miner *Miner) *PublicMinerAPI {
|
func NewPublicMinerAPI(miner *Miner) *PublicMinerAPI {
|
||||||
return &PublicMinerAPI{miner, NewRemoteAgent()}
|
agent := NewRemoteAgent()
|
||||||
|
miner.Register(agent)
|
||||||
|
|
||||||
|
return &PublicMinerAPI{miner, agent}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mining returns an indication if this node is currently mining.
|
// Mining returns an indication if this node is currently mining.
|
||||||
|
Loading…
Reference in New Issue
Block a user