You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Messaging module currently consumes an sqlite db due to its dependency on MVDS, which requires an sqlite db pointer to be injected. This pattern tightly couples the messaging module’s persistence layer to sqlite (and sqlcipher).
Instead, MVDS should expose a Persistence interface that defines the necessary persistence requirements. The status-go would then provide a concrete implementation of this interface.