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_args.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'rpc/api/eth_args.go') diff --git a/rpc/api/eth_args.go b/rpc/api/eth_args.go index ad9a35fa2..1c86bee51 100644 --- a/rpc/api/eth_args.go +++ b/rpc/api/eth_args.go @@ -333,9 +333,7 @@ func (args *NewTxArgs) UnmarshalJSON(b []byte) (err error) { args.Value = num num = nil - if ext.Gas == nil { - num = big.NewInt(0) - } else { + if ext.Gas != nil { if num, err = numString(ext.Gas); err != nil { return err } @@ -343,9 +341,7 @@ func (args *NewTxArgs) UnmarshalJSON(b []byte) (err error) { args.Gas = num num = nil - if ext.GasPrice == nil { - num = big.NewInt(0) - } else { + if ext.GasPrice != nil { if num, err = numString(ext.GasPrice); err != nil { return err } -- cgit