mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Clean up and comment functions
This commit is contained in:
parent
5a292cc397
commit
da9349fe63
@ -115,18 +115,11 @@ function updateBadge () {
|
|||||||
// txManger :: tx approvals and rejection cb's
|
// txManger :: tx approvals and rejection cb's
|
||||||
|
|
||||||
txManager.on('signed', function (txId) {
|
txManager.on('signed', function (txId) {
|
||||||
var approvalCb = this._unconfTxCbs[txId]
|
this.execOnTxDoneCb(txId, true)
|
||||||
|
|
||||||
approvalCb(null, true)
|
|
||||||
// clean up
|
|
||||||
delete this._unconfTxCbs[txId]
|
|
||||||
})
|
})
|
||||||
|
|
||||||
txManager.on('rejected', function (txId) {
|
txManager.on('rejected', function (txId) {
|
||||||
var approvalCb = this._unconfTxCbs[txId]
|
this.execOnTxDoneCb(txId, false)
|
||||||
approvalCb(null, false)
|
|
||||||
// clean up
|
|
||||||
delete this._unconfTxCbs[txId]
|
|
||||||
})
|
})
|
||||||
|
|
||||||
// data :: setters/getters
|
// data :: setters/getters
|
||||||
|
@ -38,12 +38,14 @@ module.exports = class TransactionManager extends EventEmitter {
|
|||||||
this.emit('update')
|
this.emit('update')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// gets tx by Id and returns it
|
||||||
getTx (txId, cb) {
|
getTx (txId, cb) {
|
||||||
var txList = this.getTxList()
|
var txList = this.getTxList()
|
||||||
var tx = txList.find((tx) => tx.id === txId)
|
var tx = txList.find((tx) => tx.id === txId)
|
||||||
return cb ? cb(tx) : tx
|
return cb ? cb(tx) : tx
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
updateTx (txData) {
|
updateTx (txData) {
|
||||||
var txId = txData.id
|
var txId = txData.id
|
||||||
var txList = this.getTxList()
|
var txList = this.getTxList()
|
||||||
@ -75,6 +77,21 @@ module.exports = class TransactionManager extends EventEmitter {
|
|||||||
}, {})
|
}, {})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
Takes an object of fields to search for eg:
|
||||||
|
var thingsToLookFor = {
|
||||||
|
to: '0x0..',
|
||||||
|
from: '0x0..',
|
||||||
|
status: 'signed',
|
||||||
|
}
|
||||||
|
and returns a list of tx with all
|
||||||
|
options matching
|
||||||
|
|
||||||
|
this is for things like filtering a the tx list
|
||||||
|
for only tx's from 1 account
|
||||||
|
or for filltering for all txs from one account
|
||||||
|
and that have been 'confirmed'
|
||||||
|
*/
|
||||||
getFilterdTxList (opts) {
|
getFilterdTxList (opts) {
|
||||||
var filteredTxList
|
var filteredTxList
|
||||||
Object.keys(opts).forEach((key) => {
|
Object.keys(opts).forEach((key) => {
|
||||||
@ -93,10 +110,19 @@ module.exports = class TransactionManager extends EventEmitter {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// keeps around the txCbs for later
|
||||||
addOnTxDoneCb (txId, cb) {
|
addOnTxDoneCb (txId, cb) {
|
||||||
this._unconfTxCbs[txId] = cb || noop
|
this._unconfTxCbs[txId] = cb || noop
|
||||||
}
|
}
|
||||||
|
|
||||||
|
execOnTxDoneCb (txId, conf) {
|
||||||
|
var approvalCb = this._unconfTxCbs[txId]
|
||||||
|
|
||||||
|
approvalCb(null, conf)
|
||||||
|
// clean up
|
||||||
|
delete this._unconfTxCbs[txId]
|
||||||
|
}
|
||||||
|
|
||||||
// should return the tx
|
// should return the tx
|
||||||
|
|
||||||
// Should find the tx in the tx list and
|
// Should find the tx in the tx list and
|
||||||
@ -136,7 +162,6 @@ module.exports = class TransactionManager extends EventEmitter {
|
|||||||
|
|
||||||
setTxStatusConfirmed (txId) {
|
setTxStatusConfirmed (txId) {
|
||||||
this.setTxStatus(txId, 'confirmed')
|
this.setTxStatus(txId, 'confirmed')
|
||||||
// this.removeListener(`check${txId}`, this.checkForTxInBlock)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// merges txParams obj onto txData.txParams
|
// merges txParams obj onto txData.txParams
|
||||||
@ -147,12 +172,15 @@ module.exports = class TransactionManager extends EventEmitter {
|
|||||||
this.updateTx(txData)
|
this.updateTx(txData)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// sets provider for provider utils and event listener
|
||||||
setProvider (provider) {
|
setProvider (provider) {
|
||||||
this.provider = provider
|
this.provider = provider
|
||||||
this.txProviderUtils = new TxProviderUtil(provider)
|
this.txProviderUtils = new TxProviderUtil(provider)
|
||||||
this.provider.on('block', this.checkForTxInBlock.bind(this))
|
this.provider.on('block', this.checkForTxInBlock.bind(this))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// checks if a signed tx is in a block and
|
||||||
|
// if included sets the tx status as 'confirmed'
|
||||||
checkForTxInBlock () {
|
checkForTxInBlock () {
|
||||||
var signedTxList = this.getFilterdTxList({status: 'signed'})
|
var signedTxList = this.getFilterdTxList({status: 'signed'})
|
||||||
if (!signedTxList.length) return
|
if (!signedTxList.length) return
|
||||||
|
Loading…
Reference in New Issue
Block a user