mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
3466ac2661
* feat!: implement new activityV2 filter * chore_: pr comments
10 lines
224 B
Go
10 lines
224 B
Go
package activity
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNoAddressesProvided = errors.New("no addresses provided")
|
|
ErrNoChainIDsProvided = errors.New("no chainIDs provided")
|
|
ErrSessionNotFound = errors.New("session not found")
|
|
)
|