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
Currently, the TxHashList in receipts_db is not correct, since we have implemented child-tx-refs which maps Tendermint Tx Hash to EVM Tx Hash. The problem is that GetBlockByNumber returns TM Tx Hashes for txs to Go contracts that call Solidity contracts but the Tx Hash saved in TxHashList is EVM Tx Hash. Now, we can get accurate TxHashList for a particular block from BlockStore only.
Currently, the
TxHashList
inreceipts_db
is not correct, since we have implementedchild-tx-refs
which maps Tendermint Tx Hash to EVM Tx Hash. The problem is thatGetBlockByNumber
returns TM Tx Hashes for txs to Go contracts that call Solidity contracts but the Tx Hash saved inTxHashList
is EVM Tx Hash. Now, we can get accurateTxHashList
for a particular block fromBlockStore
only.Ref: 58da756
The text was updated successfully, but these errors were encountered: