troo
Results
2
issues of
troo
1. Only first transaction in txList for out message checked: ```go for i, transaction := range txList { if i == 0 { // get previous of the oldest tx,...
Looks like transaction.IO.Out can be nil in FindLastTransactionByOutMsgHash and condition transaction.IO.Out == nil required: ```go if isOut { list, err := transaction.IO.Out.ToSlice() if err != nil { return nil, fmt.Errorf("cannot...