Add TODO to msgstore.go

This commit is contained in:
Drew DeVault 2019-03-15 21:43:33 -04:00
parent e780c6ee96
commit 01ae0cef60
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ type MessageStore struct {
// Ordered list of known UIDs
Uids []uint32
// Map of uids we've asked the worker to fetch
onUpdate func(store *MessageStore)
onUpdate func(store *MessageStore) // TODO: multiple onUpdate handlers
pendingBodies map[uint32]interface{}
pendingHeaders map[uint32]interface{}
worker *types.Worker