graphql: fix block resolving for parent field (#24191)

Fixes #24161
release/1.10
Sina Mahmoodi 3 years ago committed by GitHub
parent c20de3c4bd
commit 3ccd6b6dbb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 23
      graphql/graphql.go

@ -599,21 +599,18 @@ func (b *Block) BaseFeePerGas(ctx context.Context) (*hexutil.Big, error) {
} }
func (b *Block) Parent(ctx context.Context) (*Block, error) { func (b *Block) Parent(ctx context.Context) (*Block, error) {
// If the block header hasn't been fetched, and we'll need it, fetch it. if _, err := b.resolveHeader(ctx); err != nil {
if b.numberOrHash == nil && b.header == nil { return nil, err
if _, err := b.resolveHeader(ctx); err != nil {
return nil, err
}
} }
if b.header != nil && b.header.Number.Uint64() > 0 { if b.header == nil || b.header.Number.Uint64() < 1 {
num := rpc.BlockNumberOrHashWithNumber(rpc.BlockNumber(b.header.Number.Uint64() - 1)) return nil, nil
return &Block{
backend: b.backend,
numberOrHash: &num,
hash: b.header.ParentHash,
}, nil
} }
return nil, nil num := rpc.BlockNumberOrHashWithNumber(rpc.BlockNumber(b.header.Number.Uint64() - 1))
return &Block{
backend: b.backend,
numberOrHash: &num,
hash: b.header.ParentHash,
}, nil
} }
func (b *Block) Difficulty(ctx context.Context) (hexutil.Big, error) { func (b *Block) Difficulty(ctx context.Context) (hexutil.Big, error) {

Loading…
Cancel
Save