aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2015-06-22 03:33:51 +0800
committerzelig <viktor.tron@gmail.com>2015-07-03 06:28:12 +0800
commiteb82ca4563cf80bef9b520673d3bd18283da3a1f (patch)
tree068b631c9d78ce6671206a77c1ad484fd190d4d5 /cmd
parent09b69831758cb1001027fbb59dff9b3fbe20bbb2 (diff)
downloadgo-tangerine-eb82ca4563cf80bef9b520673d3bd18283da3a1f.tar
go-tangerine-eb82ca4563cf80bef9b520673d3bd18283da3a1f.tar.gz
go-tangerine-eb82ca4563cf80bef9b520673d3bd18283da3a1f.tar.bz2
go-tangerine-eb82ca4563cf80bef9b520673d3bd18283da3a1f.tar.lz
go-tangerine-eb82ca4563cf80bef9b520673d3bd18283da3a1f.tar.xz
go-tangerine-eb82ca4563cf80bef9b520673d3bd18283da3a1f.tar.zst
go-tangerine-eb82ca4563cf80bef9b520673d3bd18283da3a1f.zip
rpc/js coinbase returns null if no etherbase set
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/js_test.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/geth/js_test.go b/cmd/geth/js_test.go
index fc2444a7b..5bdfb7048 100644
--- a/cmd/geth/js_test.go
+++ b/cmd/geth/js_test.go
@@ -140,7 +140,7 @@ func TestAccounts(t *testing.T) {
defer os.RemoveAll(tmp)
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")`)
if err != nil {
@@ -151,9 +151,7 @@ func TestAccounts(t *testing.T) {
t.Errorf("address not hex: %q", addr)
}
- // skip until order fixed #824
// checkEvalJSON(t, repl, `eth.accounts`, `["`+testAddress+`", "`+addr+`"]`)
- // checkEvalJSON(t, repl, `eth.coinbase`, `"`+testAddress+`"`)
}
func TestBlockChain(t *testing.T) {