mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix method of emitting unconfirmedTxs to UI
This commit is contained in:
parent
a441e635bd
commit
dc043b7f9b
@ -117,7 +117,6 @@ function storeSetFromObj(store, obj){
|
|||||||
Object.keys(obj).forEach(function(key){
|
Object.keys(obj).forEach(function(key){
|
||||||
store.set(key, obj[key])
|
store.set(key, obj[key])
|
||||||
})
|
})
|
||||||
store.set('unconfTxs', configManager.unconfirmedTxs())
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -82,6 +82,7 @@ IdentityStore.prototype.getState = function(){
|
|||||||
isInitialized: !!configManager.getWallet() && !seedWords,
|
isInitialized: !!configManager.getWallet() && !seedWords,
|
||||||
isUnlocked: this._isUnlocked(),
|
isUnlocked: this._isUnlocked(),
|
||||||
seedWords: seedWords,
|
seedWords: seedWords,
|
||||||
|
unconfTxs: configManager.unconfirmedTxs(),
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user