rpc/js coinbase returns null if no etherbase set
This commit is contained in:
@ -477,7 +477,10 @@ func (self *XEth) IsListening() bool {
|
||||
}
|
||||
|
||||
func (self *XEth) Coinbase() string {
|
||||
eb, _ := self.backend.Etherbase()
|
||||
eb, err := self.backend.Etherbase()
|
||||
if err != nil {
|
||||
return "0x0"
|
||||
}
|
||||
return eb.Hex()
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user