We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29ef232 commit d1be65bCopy full SHA for d1be65b
block/internal/syncing/da_retriever.go
@@ -39,9 +39,9 @@ type DARetriever struct {
39
40
// transient cache, only full event need to be passed to the syncer
41
// on restart, will be refetch as da height is updated by syncer
42
- pendingHeaders map[uint64] /* header height */ *types.SignedHeader
43
- pendingData map[uint64] /* data height */ *types.Data
44
- headerDAHeights map[uint64] /* header height */ uint64
+ pendingHeaders map[uint64]*types.SignedHeader
+ pendingData map[uint64]*types.Data
+ headerDAHeights map[uint64]uint64
45
}
46
47
// NewDARetriever creates a new DA retriever
0 commit comments