Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DRAFT: feat(25903): Move state management from storage.local to IndexedDB #27344

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/scripts/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ import { getCurrentChainId } from '../../ui/selectors';
import migrations from './migrations';
import Migrator from './lib/migrator';
import ExtensionPlatform from './platforms/extension';
import LocalStore from './lib/local-store';
import ReadOnlyNetworkStore from './lib/network-store';
import LocalStore from './lib/state-management/local-store';
import ReadOnlyNetworkStore from './lib/state-management/network-store';
import { SENTRY_BACKGROUND_STATE } from './constants/sentry-state';

import createStreamSink from './lib/createStreamSink';
Expand Down
139 changes: 0 additions & 139 deletions app/scripts/lib/local-store.js

This file was deleted.

166 changes: 0 additions & 166 deletions app/scripts/lib/local-store.test.js

This file was deleted.

4 changes: 2 additions & 2 deletions app/scripts/lib/setup-initial-state-hooks.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { maskObject } from '../../../shared/modules/object.utils';
import ExtensionPlatform from '../platforms/extension';
import { SENTRY_BACKGROUND_STATE } from '../constants/sentry-state';
import LocalStore from './local-store';
import ReadOnlyNetworkStore from './network-store';
import LocalStore from './state-management/local-store';
import ReadOnlyNetworkStore from './state-management/network-store';

const platform = new ExtensionPlatform();

Expand Down
Loading
Loading