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
Per documentation, https://github.com/ethereum/wiki/wiki/json-rpc#eth_getblockbyhash returns a null object when the block cannot be found - a Option[Block..] would be a more natural mapping instead of a an exception with msg Parameter [result] expected JObject but got JNull - the latter is hard to filter for, and yet constitutes a "normal" non-exceptional response to the request.
The text was updated successfully, but these errors were encountered:
Per documentation, https://github.com/ethereum/wiki/wiki/json-rpc#eth_getblockbyhash returns a null object when the block cannot be found - a
Option[Block..]
would be a more natural mapping instead of a an exception with msgParameter [result] expected JObject but got JNull
- the latter is hard to filter for, and yet constitutes a "normal" non-exceptional response to the request.The text was updated successfully, but these errors were encountered: