Replies: 1 comment
-
Following up on this question on whether we should also filter out transactions that failed to be executed by the EVM - I think for consistency with other EVM's the answer is yes. Essentially an EVM client on Ethereum will only submit a transaction to consensus that successfully passes precheck. I think the final check is whether the EOAs nonce was incremented. What do you think @acuaric, @natanasow and @lukelee-sl ? |
Beta Was this translation helpful? Give feedback.
-
Following up on issue #3171, there are special kind of transactions, like those with
INVALID_ACCOUNT_ID
status, that are filtered out by methods likeeth_getBlockByNumber
. This is because those kind of transactions are Hedera-specific and don't have an Ethereum equivalent.To provide a consistent experience, we need to decide whether or not these kind of transactions should be retrievable through other method calls. That is, should methods like
eth_getTransactionByHash
, return transactions not returned by block-specific methods?Related
Beta Was this translation helpful? Give feedback.
All reactions