diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-04-04 19:24:21 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-04-04 19:24:21 +0800 |
commit | 47298264663a563b34ebb8a1faf9fb8326fdef01 (patch) | |
tree | a8d42be85553fbb057cc47356d85cfea24d6832b /rpc/api.go | |
parent | 3e042317adc99438d6ffde0cbde4f0b40ad579c1 (diff) | |
parent | bc5528b165e48e223c9c38dc1355511014c97e34 (diff) | |
download | dexon-47298264663a563b34ebb8a1faf9fb8326fdef01.tar.gz dexon-47298264663a563b34ebb8a1faf9fb8326fdef01.tar.zst dexon-47298264663a563b34ebb8a1faf9fb8326fdef01.zip |
Merge branch 'develop' into rpcfabian
Diffstat (limited to 'rpc/api.go')
-rw-r--r-- | rpc/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api.go b/rpc/api.go index 573f689a2..30ba1ddc1 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -68,7 +68,7 @@ func (api *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) err case "eth_mining": *reply = api.xeth().IsMining() case "eth_gasPrice": - v := api.xeth().DefaultGas() + v := xeth.DefaultGas() *reply = common.ToHex(v.Bytes()) case "eth_accounts": *reply = api.xeth().Accounts() |