add note about why error isnt dropped

This commit is contained in:
whyrusleeping 2019-08-01 17:57:29 -07:00
parent 8cdc09fc08
commit 06ad14b964

View File

@ -584,6 +584,8 @@ func (cs *ChainStore) TryFillTipSet(ts *types.TipSet) (*FullTipSet, error) {
for _, b := range ts.Blocks() {
msgs, err := cs.MessagesForBlock(b)
if err != nil {
// TODO: check for 'not found' errors, and only return nil if this
// is actually a 'not found' error
return nil, nil
}