aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2015-07-27 16:50:29 +0800
committerzelig <viktor.tron@gmail.com>2015-07-27 16:50:29 +0800
commit1356daad276b849a192c84834d78a6cf32d739eb (patch)
treeccb95f6de7633c83016a90a6e87873f00d2b5b56 /eth
parentd18d256442e2dc3413ebd9f571e1a5f6be366c09 (diff)
downloadgo-tangerine-1356daad276b849a192c84834d78a6cf32d739eb.tar
go-tangerine-1356daad276b849a192c84834d78a6cf32d739eb.tar.gz
go-tangerine-1356daad276b849a192c84834d78a6cf32d739eb.tar.bz2
go-tangerine-1356daad276b849a192c84834d78a6cf32d739eb.tar.lz
go-tangerine-1356daad276b849a192c84834d78a6cf32d739eb.tar.xz
go-tangerine-1356daad276b849a192c84834d78a6cf32d739eb.tar.zst
go-tangerine-1356daad276b849a192c84834d78a6cf32d739eb.zip
etherbase defaults to first account even if created during the session
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/eth/backend.go b/eth/backend.go
index cba1b3939..4b8c4858f 100644
--- a/eth/backend.go
+++ b/eth/backend.go
@@ -489,7 +489,11 @@ func (s *Ethereum) StartMining(threads int) error {
func (s *Ethereum) Etherbase() (eb common.Address, err error) {
eb = s.etherbase
if (eb == common.Address{}) {
- err = fmt.Errorf("etherbase address must be explicitly specified")
+ addr, e := s.AccountManager().AddressByIndex(0)
+ if e != nil {
+ err = fmt.Errorf("etherbase address must be explicitly specified")
+ }
+ eb = common.HexToAddress(addr)
}
return
}