mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Revert "graphql: fix an issue of nil pointer panic (#28416)"
This reverts commit 503c8d4347.
This commit is contained in:
parent
416999b295
commit
5acfa594f4
2 changed files with 0 additions and 8 deletions
|
|
@ -1325,9 +1325,6 @@ func (r *Resolver) Blocks(ctx context.Context, args struct {
|
||||||
From *Long
|
From *Long
|
||||||
To *Long
|
To *Long
|
||||||
}) ([]*Block, error) {
|
}) ([]*Block, error) {
|
||||||
if args.From == nil {
|
|
||||||
return nil, errors.New("from block number must be specified")
|
|
||||||
}
|
|
||||||
from := rpc.BlockNumber(*args.From)
|
from := rpc.BlockNumber(*args.From)
|
||||||
|
|
||||||
var to rpc.BlockNumber
|
var to rpc.BlockNumber
|
||||||
|
|
|
||||||
|
|
@ -148,11 +148,6 @@ func TestGraphQLBlockSerialization(t *testing.T) {
|
||||||
want: `{"data":{"block":{"number":"0xa","call":{"data":"0x","status":"0x1"}}}}`,
|
want: `{"data":{"block":{"number":"0xa","call":{"data":"0x","status":"0x1"}}}}`,
|
||||||
code: 200,
|
code: 200,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
body: `{"query": "{blocks {number}}"}`,
|
|
||||||
want: `{"errors":[{"message":"from block number must be specified","path":["blocks"]}],"data":null}`,
|
|
||||||
code: 400,
|
|
||||||
},
|
|
||||||
} {
|
} {
|
||||||
resp, err := http.Post(fmt.Sprintf("%s/graphql", stack.HTTPEndpoint()), "application/json", strings.NewReader(tt.body))
|
resp, err := http.Post(fmt.Sprintf("%s/graphql", stack.HTTPEndpoint()), "application/json", strings.NewReader(tt.body))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue