diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-02 20:00:49 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-02 20:00:49 +0800 |
commit | 1e28b424e7f0f0d16f467ac7bac08b9dc0384106 (patch) | |
tree | bfed2a8a37bac9a4c25d1999156f2ec5b5b672ec /rpc/api.go | |
parent | 55b1c1546b72b24b087cecf18f3e52bad5c758c8 (diff) | |
download | dexon-1e28b424e7f0f0d16f467ac7bac08b9dc0384106.tar.gz dexon-1e28b424e7f0f0d16f467ac7bac08b9dc0384106.tar.zst dexon-1e28b424e7f0f0d16f467ac7bac08b9dc0384106.zip |
Default gas
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 4a17d3b15..44146c8c7 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -67,7 +67,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() |