Browse Source

rpc: to in Call no longer required. Fixed eth_estimateGas

Jeffrey Wilcke 10 năm trước cách đây
mục cha
commit
d261c3f455
3 tập tin đã thay đổi với 4 bổ sung8 xóa
  1. 3 3
      rpc/api/args_test.go
  2. 1 1
      rpc/api/eth.go
  3. 0 4
      rpc/api/eth_args.go

+ 3 - 3
rpc/api/args_test.go

@@ -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)
 	}
 }
 

+ 1 - 1
rpc/api/eth.go

@@ -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
 	}
 }
 

+ 0 - 4
rpc/api/eth_args.go

@@ -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