db version store bug fix

This commit is contained in:
julian 2023-03-29 08:58:30 -06:00
parent a5350fcc5b
commit ac0c65e26b

View file

@ -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);