Skip to content

Instantly share code, notes, and snippets.

@kunal365roy
Created March 25, 2020 01:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kunal365roy/b43ace0b0644bfd8df64ea9f6995bb00 to your computer and use it in GitHub Desktop.
Save kunal365roy/b43ace0b0644bfd8df64ea9f6995bb00 to your computer and use it in GitHub Desktop.
Geth vs. Parity Omitted fields March 22 2020
1) eth_getBlockByNumber(true):
Geth omits result.author, result.sealFields, transactions.chainId, transactions.condition, transactions.creates, transactions.publicKey, transactions.raw, transactions.standardV
2) eth_getBlockByHash(false):
Geth omits result.sealFields, result.author
3) eth_getTransactionReceipt
Geth omits result.logs.0.type, result.logs.0.transactionLogIndex, result.root
4) eth_getTransactionByHash:
Geth omits result.standardV, result.publicKey, result.condition, result.creates, result.raw, result.chainId
5) eth_getLogs
Geth omits transactionLogIndex and type in results
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment