miner: register newly created remote agent in the API

This commit is contained in:
Péter Szilágyi 2016-02-02 20:22:21 +02:00
parent 6005dcef5b
commit 9aa7158057

View File

@ -33,7 +33,10 @@ type PublicMinerAPI struct {
// NewPublicMinerAPI create a new PublicMinerAPI instance.
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.