eth,miner,rpc: set coinbase

This commit is contained in:
Jeffrey Wilcke
2015-07-07 10:58:47 +02:00
parent 35cd355c14
commit 37c1a8f69d
4 changed files with 13 additions and 1 deletions

View File

@ -472,6 +472,7 @@ func (s *Ethereum) Etherbase() (eb common.Address, err error) {
// set in js console via admin interface or wrapper from cli flags
func (self *Ethereum) SetEtherbase(etherbase common.Address) {
self.etherbase = etherbase
self.miner.SetEtherbase(etherbase)
}
func (s *Ethereum) StopMining() { s.miner.Stop() }