mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
b11399ffc6
We were checking for the wrong error kind when pulling messages from the database, which resulted in the code not retrying to pull the message, giving flaky tests / race condition (that's present in production as well)
6 lines
88 B
Go
6 lines
88 B
Go
package common
|
|
|
|
import "errors"
|
|
|
|
var ErrRecordNotFound = errors.New("record not found")
|