Replies: 2 comments
-
As each epoch has 32 slots (384s) and the lookahead is 64 slots. Maybe we can use the following?
When reading data: ProposerInfo memory pi = blockIdToProposer[blockId % 128]
if (pi.blockId != blockId) {
pi = ProposerInfo(address(0), 0);
} |
Beta Was this translation helpful? Give feedback.
0 replies
-
Implemented in the open PR: NethermindEth/Taiko-Preconf-AVS#171 |
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
-
Maybe it's possible to use two ring-buffers for the following two mappings to save 15000 gas per SSTORE.
Beta Was this translation helpful? Give feedback.
All reactions