You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@jbaldwinroberts thank you for bringing this to our attention and for your support.
The difference you're seeing occurs because Hedera Consensus Service Submit Messages are not included in the results when querying block data via the Hedera JSON-RPC API. We will determine the reason shortly. This behaviour is not tied to the Golang client itself.
To retrieve the complete list of transactions stored on a specific block, you can use the following script:
curl -X POST https://testnet.hashio.io/api \
-H "Content-Type: application/json" \
-d '{ "jsonrpc":"2.0", "method":"eth_getBlockByNumber", "params": [ "0x769611", // Block number in hexadecimal (7771665 in decimal is 0x769611 in hex) true ], "id":1}'
@jbaldwinroberts To add to @arianejasuwienas point, the above JSON RPC call will return ethereum related as well as crypto transfer transactions, and there is one crypto transfer transaction in that block.
Description
go-ethereum is returning the incorrect number of transactions
Steps to reproduce
The above prints
1
, whereashttps://hashscan.io/testnet/block/7771665
shows9
.Additional context
No response
Hedera network
testnet
Version
NA
Operating system
macOS
The text was updated successfully, but these errors were encountered: