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, we are able to trigger the building of a block on top of a known head, however if we want to create another block a few seconds later (to include potentially more profitable txs) we would have to recreate the block from scratch.
Geth includes a mechanism for continuous block improvement, where the currently mined block is continuously improved with better incoming txs and tx ordering optimizations. We should implement something similar.
This will also be very critical for us after the merge because of the way consensus clients request blocks, as well as because then we will be a mining client so we should aim to maximize the profits of validators running Nethermind.
The text was updated successfully, but these errors were encountered:
Currently, we are able to trigger the building of a block on top of a known head, however if we want to create another block a few seconds later (to include potentially more profitable txs) we would have to recreate the block from scratch.
Geth includes a mechanism for continuous block improvement, where the currently mined block is continuously improved with better incoming txs and tx ordering optimizations. We should implement something similar.
This will also be very critical for us after the merge because of the way consensus clients request blocks, as well as because then we will be a mining client so we should aim to maximize the profits of validators running Nethermind.
The text was updated successfully, but these errors were encountered: