mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-15 12:36:48 +00:00
graphql: fix issue with unmarshalling int32 into Long type #22153
This commit is contained in:
parent
49c2816d54
commit
39b3b8ffb4
1 changed files with 1 additions and 1 deletions
|
|
@ -300,7 +300,7 @@ const schema string = `
|
||||||
block(number: Long, hash: Bytes32): Block
|
block(number: Long, hash: Bytes32): Block
|
||||||
# Blocks returns all the blocks between two numbers, inclusive. If
|
# Blocks returns all the blocks between two numbers, inclusive. If
|
||||||
# to is not supplied, it defaults to the most recent known block.
|
# to is not supplied, it defaults to the most recent known block.
|
||||||
blocks(from: Long!, to: Long): [Block!]!
|
blocks(from: Long, to: Long): [Block!]!
|
||||||
# Pending returns the current pending state.
|
# Pending returns the current pending state.
|
||||||
pending: Pending!
|
pending: Pending!
|
||||||
# Transaction returns a transaction specified by its hash.
|
# Transaction returns a transaction specified by its hash.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue