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
eth_getTransactionReceipt and eth_getTransactionByHash (as well as eth_getBlockByNumber among others that contain full tx details) return mismatched from addresses for EVM calls/deploys. The from on the tx receipt is the local address, while the from on the tx object is the eth address, these should be consistent everywhere. So we need to make sure that eth addresses are mapped to a local address in eth_getTransactionByHash, eth_getBlockByNumber etc.
The text was updated successfully, but these errors were encountered:
eth_getTransactionReceipt
andeth_getTransactionByHash
(as well aseth_getBlockByNumber
among others that contain full tx details) return mismatchedfrom
addresses for EVM calls/deploys. Thefrom
on the tx receipt is the local address, while thefrom
on the tx object is the eth address, these should be consistent everywhere. So we need to make sure that eth addresses are mapped to a local address ineth_getTransactionByHash
,eth_getBlockByNumber
etc.The text was updated successfully, but these errors were encountered: