Automatically merged updates to draft EIP(s) 1767 (#2262)

Hi, I'm a bot! This change was automatically merged because:

 - It only modifies existing Draft or Last Call EIP(s)
 - The PR was approved or written by at least one author of each modified EIP
 - The build is passing
This commit is contained in:
Adam Schmideg 2019-11-23 01:45:18 +01:00 committed by EIP Automerge Bot
parent 05a85a9e3c
commit 26a8f1512c
1 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ type Block {
# Logs returns a filtered set of logs from this block. # Logs returns a filtered set of logs from this block.
logs(filter: BlockFilterCriteria!): [Log!]! logs(filter: BlockFilterCriteria!): [Log!]!
# Account fetches an Ethereum account at the current block's state. # Account fetches an Ethereum account at the current block's state.
account(address: Address!): Account! account(address: Address!): Account
# Call executes a local call operation at the current block's state. # Call executes a local call operation at the current block's state.
call(data: CallData!): CallResult call(data: CallData!): CallResult
# EstimateGas estimates the amount of gas that will be required for # EstimateGas estimates the amount of gas that will be required for
@ -303,7 +303,7 @@ type Pending {
# Transactions is a list of transactions in the current pending state. # Transactions is a list of transactions in the current pending state.
transactions: [Transaction!] transactions: [Transaction!]
# Account fetches an Ethereum account for the pending state. # Account fetches an Ethereum account for the pending state.
account(address: Address!): Account! account(address: Address!): Account
# Call executes a local call operation for the pending state. # Call executes a local call operation for the pending state.
call(data: CallData!): CallResult call(data: CallData!): CallResult
# EstimateGas estimates the amount of gas that will be required for # EstimateGas estimates the amount of gas that will be required for