From 2628103f1df35ad6a130f2f41e73c7703bf61886 Mon Sep 17 00:00:00 2001 From: obscuren Date: Mon, 15 Jun 2015 17:21:08 +0200 Subject: rpc/api: fixed default gas-(price) issue. --- rpc/api/eth.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'rpc/api/eth.go') diff --git a/rpc/api/eth.go b/rpc/api/eth.go index a0b9dad86..d329dbf10 100644 --- a/rpc/api/eth.go +++ b/rpc/api/eth.go @@ -259,7 +259,14 @@ func (self *ethApi) SendTransaction(req *shared.Request) (interface{}, error) { nonce = args.Nonce.String() } - v, err := self.xeth.Transact(args.From, args.To, nonce, args.Value.String(), args.Gas.String(), args.GasPrice.String(), args.Data) + var gas, price string + if args.Gas != nil { + gas = args.Gas.String() + } + if args.GasPrice != nil { + price = args.GasPrice.String() + } + v, err := self.xeth.Transact(args.From, args.To, nonce, args.Value.String(), gas, price, args.Data) if err != nil { return nil, err } -- cgit