Unverified Commit 39b3b8ff authored by rene's avatar rene Committed by GitHub

graphql: fix issue with unmarshalling int32 into `Long` type #22153

parent 49c2816d
......@@ -300,7 +300,7 @@ const schema string = `
block(number: Long, hash: Bytes32): Block
# Blocks returns all the blocks between two numbers, inclusive. If
# 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: Pending!
# Transaction returns a transaction specified by its hash.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment