aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/config-manager.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-04-21 00:29:37 +0800
committerDan Finlay <dan@danfinlay.com>2016-04-21 00:29:37 +0800
commit532edf670e8c30db958765141974f3fb0f5ec44c (patch)
tree2a2eccc7fba9e98b6a69abe2cb74d793264d5ba4 /app/scripts/lib/config-manager.js
parent7455a0fa32850e46a3d7c84d39c549928274a248 (diff)
downloadtangerine-wallet-browser-532edf670e8c30db958765141974f3fb0f5ec44c.tar.gz
tangerine-wallet-browser-532edf670e8c30db958765141974f3fb0f5ec44c.tar.zst
tangerine-wallet-browser-532edf670e8c30db958765141974f3fb0f5ec44c.zip
Store metamaskId on metaTx instead of getTxWithParams method.
Diffstat (limited to 'app/scripts/lib/config-manager.js')
-rw-r--r--app/scripts/lib/config-manager.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/scripts/lib/config-manager.js b/app/scripts/lib/config-manager.js
index b0dcd4d3f..c79dc7a8f 100644
--- a/app/scripts/lib/config-manager.js
+++ b/app/scripts/lib/config-manager.js
@@ -161,16 +161,6 @@ ConfigManager.prototype.getTx = function(txId) {
return matching.length > 0 ? matching[0] : null
}
-ConfigManager.prototype.getTxWithParams = function(params) {
- var transactions = this.getTxList()
- var matching = transactions.filter((tx) => {
- return Object.keys(tx.txParams).reduce((result, key) => {
- return ('params' in tx) ? tx.params[key] === params[key] && result : result
- }, true)
- })
- return matching.length > 0 ? matching[0] : null
-}
-
ConfigManager.prototype.confirmTx = function(txId) {
this._setTxStatus(txId, 'confirmed')
}