mirror of
https://github.com/status-im/status-go.git
synced 2026-08-31 00:51:12 +00:00
* chore: delete StatusBackend interface * chore: rename GethStatusBackend to StatusBackend * chore: move to pkg/multiformat * chore: move and rename pkg/backend * fix(Makefile): lint-fix depends on generate * chore: move services/pkg * chore: pkg/backend/node * chore: testdata/test-0.132.0-account * fix: rename imports
10 lines
106 B
Go
10 lines
106 B
Go
package adapters
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrMessengerNotReady = errors.New("messenger not ready")
|
|
)
|