filecoin-project/lotus

ChainIndexer: GetMsgInfo should return ErrNotFound when not found

rvagg opened this issue · 0 comments

2024-11-06T21:13:14.735+1100    WARN    statemgr        stmgr/searchwait.go:175 error searching message index: error looking up message in index: sql: no rows in result set

Lots of this kind of thing in the logs, but it shouldn't be logged:

case errors.Is(err, index.ErrNotFound):
// ok for the index to have incomplete data
default:
log.Warnf("error searching message index: %s", err)
}

GetMsgInfo should return an ErrNotFound when there are no rows, here:

if err := si.queryMsgInfo(ctx, messageCid, &tipsetKeyCidBytes, &height); err != nil {
return nil, err
}

Needs tests as well.