mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
keyring - add keyringtypes to memStore
This commit is contained in:
parent
d326e7d11e
commit
41c93ceb7e
@ -31,14 +31,15 @@ class KeyringController extends EventEmitter {
|
||||
constructor (opts) {
|
||||
super()
|
||||
const initState = opts.initState || {}
|
||||
this.keyringTypes = keyringTypes
|
||||
this.store = new ObservableStore(initState)
|
||||
this.memStore = new ObservableStore({
|
||||
keyrings: [],
|
||||
keyringTypes: this.keyringTypes.map(krt => krt.type),
|
||||
})
|
||||
this.configManager = opts.configManager
|
||||
this.ethStore = opts.ethStore
|
||||
this.encryptor = encryptor
|
||||
this.keyringTypes = keyringTypes
|
||||
this.keyrings = []
|
||||
this.identities = {} // Essentially a name hash
|
||||
|
||||
@ -85,9 +86,8 @@ class KeyringController extends EventEmitter {
|
||||
// computed
|
||||
isInitialized: (!!wallet || !!state.vault),
|
||||
isUnlocked: (!!this.password),
|
||||
// hard coded
|
||||
keyringTypes: this.keyringTypes.map(krt => krt.type),
|
||||
// memStore
|
||||
keyringTypes: memState.keyringTypes,
|
||||
identities: this.identities,
|
||||
keyrings: memState.keyrings,
|
||||
// messageManager
|
||||
|
Loading…
Reference in New Issue
Block a user