1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

fix miss type

This commit is contained in:
frankiebee 2017-09-08 15:02:36 -07:00
parent 9b9df41724
commit 62f26c5ba8

View File

@ -36,7 +36,7 @@ module.exports = class TransactionStateManger extends ObservableStore {
getPendingTransactions (address) {
const opts = { status: 'submitted' }
if (address) opts.from = address
return this.txStateManager.getFilteredTxList(opts)
return this.getFilteredTxList(opts)
}
addTx (txMeta) {