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
Copy file name to clipboardExpand all lines: arbnode/db-schema/schema.go
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,8 @@ var (
15
15
SequencerBatchMetaPrefix []byte= []byte("s") // maps a batch sequence number to BatchMetadata
16
16
DelayedSequencedPrefix []byte= []byte("a") // maps a delayed message count to the first sequencer batch sequence number with this delayed count
17
17
MelStatePrefix []byte= []byte("l") // maps a parent chain block number to its computed MEL state
18
-
MelDelayedMessagePrefix []byte= []byte("y") // maps a delayed sequence number to an accumulator and an RLP encoded message [Note: might need to replace or be replaced by RlpDelayedMessagePrefix]
18
+
MelDelayedMessagePrefix []byte= []byte("y") // maps a delayed sequence number to an accumulator and an RLP encoded message [TODO: might need to replace or be replaced by RlpDelayedMessagePrefix]
19
+
MelSequencerBatchMetaPrefix []byte= []byte("q") // maps a batch sequence number to BatchMetadata [TODO: might need to replace or be replaced by SequencerBatchMetaPrefix
19
20
20
21
MessageCountKey []byte= []byte("_messageCount") // contains the current message count
21
22
LastPrunedMessageKey []byte= []byte("_lastPrunedMessageKey") // contains the last pruned message key
return&DelayedMessageBacklog{d.ctx, d.capacity, deque, nil, d.finalizedAndReadIndexFetcher} // Init msg should only be read once, no need to persist it
0 commit comments