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:
parent
9b9df41724
commit
62f26c5ba8
@ -36,7 +36,7 @@ module.exports = class TransactionStateManger extends ObservableStore {
|
|||||||
getPendingTransactions (address) {
|
getPendingTransactions (address) {
|
||||||
const opts = { status: 'submitted' }
|
const opts = { status: 'submitted' }
|
||||||
if (address) opts.from = address
|
if (address) opts.from = address
|
||||||
return this.txStateManager.getFilteredTxList(opts)
|
return this.getFilteredTxList(opts)
|
||||||
}
|
}
|
||||||
|
|
||||||
addTx (txMeta) {
|
addTx (txMeta) {
|
||||||
|
Loading…
Reference in New Issue
Block a user