diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-09 08:10:36 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-09 20:13:25 +0800 |
commit | 1c364b6beb433d4fd8ffda0daead5752fe05f544 (patch) | |
tree | 6c67020fd23acee954673935bbdaec0524a2710d /rpc | |
parent | c8a9a4e76d00483280a51bb6c0f9517d6c531589 (diff) | |
download | dexon-1c364b6beb433d4fd8ffda0daead5752fe05f544.tar.gz dexon-1c364b6beb433d4fd8ffda0daead5752fe05f544.tar.zst dexon-1c364b6beb433d4fd8ffda0daead5752fe05f544.zip |
gas -> gasprice
Diffstat (limited to 'rpc')
-rw-r--r-- | rpc/api.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpc/api.go b/rpc/api.go index 33789a55f..da3219933 100644 --- a/rpc/api.go +++ b/rpc/api.go @@ -626,9 +626,9 @@ func (api *EthereumApi) doCall(params json.RawMessage) (string, string, error) { var gasprice string if args.GasPrice == nil { - gas = "" + gasprice = "" } else { - gas = args.GasPrice.String() + gasprice = args.GasPrice.String() } return api.xethAtStateNum(args.BlockNumber).Call(args.From, args.To, args.Value.String(), gas, gasprice, args.Data) |