aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/utils.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-11-06 17:47:57 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-11-06 17:47:57 +0800
commit6e5349880e79b8321ae311d824493e4581039d30 (patch)
tree7feb515a65edf50ad5db984723aeef2c2463bee6 /rpc/api/utils.go
parent6d09468cabad74b3b1efabf7ad5a965bdb1aa04a (diff)
downloaddexon-6e5349880e79b8321ae311d824493e4581039d30.tar
dexon-6e5349880e79b8321ae311d824493e4581039d30.tar.gz
dexon-6e5349880e79b8321ae311d824493e4581039d30.tar.bz2
dexon-6e5349880e79b8321ae311d824493e4581039d30.tar.lz
dexon-6e5349880e79b8321ae311d824493e4581039d30.tar.xz
dexon-6e5349880e79b8321ae311d824493e4581039d30.tar.zst
dexon-6e5349880e79b8321ae311d824493e4581039d30.zip
rpc/api: fix #1972 api regression (nil eth panic) in attach
Diffstat (limited to 'rpc/api/utils.go')
-rw-r--r--rpc/api/utils.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api/utils.go b/rpc/api/utils.go
index 6dde4022b..5a3ade46b 100644
--- a/rpc/api/utils.go
+++ b/rpc/api/utils.go
@@ -165,7 +165,7 @@ func ParseApiString(apistr string, codec codec.Codec, xeth *xeth.XEth, eth *eth.
for i, name := range names {
switch strings.ToLower(strings.TrimSpace(name)) {
case shared.AdminApiName:
- apis[i] = NewAdminApi(xeth, eth.Network(), eth, codec)
+ apis[i] = NewAdminApi(xeth, eth, codec)
case shared.DebugApiName:
apis[i] = NewDebugApi(xeth, eth, codec)
case shared.DbApiName: