Skip to content

Commit

Permalink
rpc: to in Call no longer required. Fixed eth_estimateGas
Browse files Browse the repository at this point in the history
  • Loading branch information
obscuren committed Jul 29, 2015
1 parent fa28668 commit d261c3f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
6 changes: 3 additions & 3 deletions rpc/api/args_test.go
Expand Up @@ -935,9 +935,9 @@ func TestCallArgsNotStrings(t *testing.T) {
func TestCallArgsToEmpty(t *testing.T) {
input := `[{"from": "0xb60e8dd61c5d32be8058bb8eb970870f07233155"}]`
args := new(CallArgs)
str := ExpectValidationError(json.Unmarshal([]byte(input), &args))
if len(str) > 0 {
t.Error(str)
err := json.Unmarshal([]byte(input), &args)
if err != nil {
t.Error("Did not expect error. Got", err)
}
}

Expand Down
2 changes: 1 addition & 1 deletion rpc/api/eth.go
Expand Up @@ -322,7 +322,7 @@ func (self *ethApi) EstimateGas(req *shared.Request) (interface{}, error) {
if len(gas) == 0 {
return newHexNum(0), nil
} else {
return newHexNum(gas), nil
return newHexNum(common.String2Big(gas)), err
}
}

Expand Down
4 changes: 0 additions & 4 deletions rpc/api/eth_args.go
Expand Up @@ -469,10 +469,6 @@ func (args *CallArgs) UnmarshalJSON(b []byte) (err error) {
}

args.From = ext.From

if len(ext.To) == 0 {
return shared.NewValidationError("to", "is required")
}
args.To = ext.To

var num *big.Int
Expand Down

0 comments on commit d261c3f

Please sign in to comment.