Skip to content

Commit db14374

Browse files
committed
chore(fast-inbox): clarify Inbox ring-floor rationale comment (A-1377)
1 parent 59b61fc commit db14374

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

l1-contracts/src/core/messagebridge/Inbox.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ uint256 constant INBOX_BUCKET_RING_SIZE = 1024;
2020

2121
// Constructor floor for the bucket ring. The ring must cover the longest stall the chain recovers from on
2222
// its own: the prune-and-repropose window of 64 checkpoints (2 epochs = 384 L1 blocks) at the natural cadence
23-
// of one bucket per L1 block, so buckets re-consumed after a prune are not overwritten first. 384 rounded up
24-
// to the next power of two, kept at or below the production ring.
23+
// of one bucket per L1 block, so the buckets it must re-consume after a prune have not been overwritten. 384
24+
// rounded up to the next power of two, kept at or below the production ring.
2525
uint256 constant MIN_BUCKET_RING_SIZE = 512;
2626

2727
/**

0 commit comments

Comments
 (0)