Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Commit

Permalink
feat(sdk): migrate db to fix hardcoding users
Browse files Browse the repository at this point in the history
  • Loading branch information
joeandrews committed Jul 9, 2020
1 parent 68f4662 commit e2e9448
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function acceptConnection() {

if (clientProfile) {
try {
await migrateIndexedDB();
// await migrateIndexedDB();
networkConfig = await setupNetworkConfig(clientProfile);
connection.initUi();
} catch (e) {
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/src/config/database.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const version = 1;
export const version = 2;
export const sdkSettingDbName = 'aztec-sdk';
export const networkDbPrefix = 'aztec_network';

0 comments on commit e2e9448

Please sign in to comment.