mirror of
https://github.com/status-im/status-go.git
synced 2025-02-16 16:56:53 +00:00
The only place where appDB is used in wallet is activity, which refers to `keycards_accounts` table. So a temporary table `keycards_accounts` is created in wallet db and updated before each activity query.
8 lines
156 B
Go
8 lines
156 B
Go
package dbsetup
|
|
|
|
import "database/sql"
|
|
|
|
type DatabaseInitializer interface {
|
|
Initialize(path, password string, kdfIterationsNumber int) (*sql.DB, error)
|
|
}
|