Commit eb82ca45 authored by zelig's avatar zelig

rpc/js coinbase returns null if no etherbase set

parent 09b69831
...@@ -140,7 +140,7 @@ func TestAccounts(t *testing.T) { ...@@ -140,7 +140,7 @@ func TestAccounts(t *testing.T) {
defer os.RemoveAll(tmp) defer os.RemoveAll(tmp)
checkEvalJSON(t, repl, `eth.accounts`, `["`+testAddress+`"]`) checkEvalJSON(t, repl, `eth.accounts`, `["`+testAddress+`"]`)
checkEvalJSON(t, repl, `eth.coinbase`, `"`+common.Address{}.Hex()+`"`) checkEvalJSON(t, repl, `eth.coinbase`, `null`)
val, err := repl.re.Run(`personal.newAccount("password")`) val, err := repl.re.Run(`personal.newAccount("password")`)
if err != nil { if err != nil {
...@@ -151,9 +151,7 @@ func TestAccounts(t *testing.T) { ...@@ -151,9 +151,7 @@ func TestAccounts(t *testing.T) {
t.Errorf("address not hex: %q", addr) t.Errorf("address not hex: %q", addr)
} }
// skip until order fixed #824
// checkEvalJSON(t, repl, `eth.accounts`, `["`+testAddress+`", "`+addr+`"]`) // checkEvalJSON(t, repl, `eth.accounts`, `["`+testAddress+`", "`+addr+`"]`)
// checkEvalJSON(t, repl, `eth.coinbase`, `"`+testAddress+`"`)
} }
func TestBlockChain(t *testing.T) { func TestBlockChain(t *testing.T) {
......
...@@ -477,7 +477,10 @@ func (self *XEth) IsListening() bool { ...@@ -477,7 +477,10 @@ func (self *XEth) IsListening() bool {
} }
func (self *XEth) Coinbase() string { func (self *XEth) Coinbase() string {
eb, _ := self.backend.Etherbase() eb, err := self.backend.Etherbase()
if err != nil {
return "0x0"
}
return eb.Hex() return eb.Hex()
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment