mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-22 18:44:31 +00:00
db version store bug fix
This commit is contained in:
parent
a5350fcc5b
commit
ac0c65e26b
1 changed files with 1 additions and 1 deletions
|
@ -285,7 +285,7 @@ class DbVersionMigrator with WalletDB {
|
|||
|
||||
// update version
|
||||
await DB.instance.put<dynamic>(
|
||||
boxName: DB.boxNameDBInfo, key: "hive_data_version", value: 7);
|
||||
boxName: DB.boxNameDBInfo, key: "hive_data_version", value: 8);
|
||||
|
||||
// try to continue migrating
|
||||
return await migrate(8, secureStore: secureStore);
|
||||
|
|
Loading…
Reference in a new issue