Description
Describe the bug
A clear and concise description of what the bug is.
pm.LocalSenderMonitor can send a ticket result to a ticket queue that contains a tx hash that is different from the tx hash of the mined tx if the mined tx was a replacement tx. This can occur because eth.client.CheckTx()
does not signal to the caller the hash of the mined tx. If the caller assumes that the hash of the mined tx is the hash of the tx passed to eth.client.CheckTx()
, then in non-replacement tx situations everything is fine, but in replacement tx situations the hash of the tx passed to eth.client.CheckTx()
is not the right tx hash.
Expected behavior
A clear and concise description of what you expected to happen.
The ticketQueue table should track the right tx hash even if a replacement tx is mined.
We may be able to address this by returning the mined tx from eth.client.CheckTx()
.