-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Sequencer] - fake receipt for OOC transaction #776
Comments
Hi @hexoscott can you check if this issue still needs to be resolved or if it can be closed now. Thanks |
Afaik we still need this, or something like this |
Okay thanks @hexoscott , can you please review with @mandrigin and action. I like the approach to check for an OOG scenario earlier—during the eth_sendRawTransaction call itself but of course you guys know best! |
There is work in progress regarding this one: #1016 |
Hi @kstoykov can you provide an ETA on this please? |
I'm waiting for more information as mentioned in the PR 1016. |
Just checking back in on this one @kstoykov @mandrigin. We recently made a change to ensure that an OOC transaction doesn't get automatically rejected the 2nd time it is submitted. With that in mind do we want fake receipts or not? The 2nd submission might not OOC because the world state has changed since the last submission and the TX will have the same hash. I'm thinking we either don't want fake receipts or we need to make the transaction handling process a little more complex and check for these fake receipts and delete them every time a transaction is submitted if a fake receipt already exists for it. |
@mandrigin Agreed to removed for mainnet milestone |
@mandrigin do we require this for RC1? |
Thoughts on this one:
|
@mandrigin wdyt to the above, smaller implementation and at least gives the end use some kind of feedback to action on. It won't mess with receipts either or give any indication that the TX was handled, just an error with something meaningful. |
I am descoping this one for now, let's keep the task around but I will remove the milestones |
If you send a transaction that causes an OOC you are never able to get a receipt for this. We need a mechanism to produce a fake receipt and share it with RPC nodes (or at lease the one that made the initial request), or alternatively check on the eth_sendRawTransaction call for an OOC by executing the transaction based on current state in the RPC before passing it to the sequencer for processing.
The text was updated successfully, but these errors were encountered: