Replies: 1 comment
-
v0.2 Proposalv0.2 introduces a new geth config This eliminates the race condition where a flashbots block could be mined before the vanilla block is done being calculated. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Right now, mev-geth proposes blocks as fast as it can. The profit switcher in mev-geth will eventually converge to the most profitable block, but there can be timing windows where it proposes a less profitable block before the vanilla block is done being calculated. This leads to problems where miners will be working on a suboptimal block for a short amount of time. This is compounded by many miners blocking quick updates, since there's a switching cost to loading a new block.
Proposal: add an option for miners to wait until both the flashbots and vanilla worker have computed the block before proposing the winner. A quick spot check shows this adds around 50ms of latency on average, but it can sometimes go way higher (up to 1+ seconds).
Issue: flashbots/mev-geth#38
Beta Was this translation helpful? Give feedback.
All reactions