aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/manifest.json2
-rw-r--r--app/scripts/lib/id-management.js3
2 files changed, 4 insertions, 1 deletions
diff --git a/app/manifest.json b/app/manifest.json
index 2e2d28f37..dede7402a 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -1,7 +1,7 @@
{
"name": "__MSG_appName__",
"short_name": "Metamask",
- "version": "2.4.0",
+ "version": "2.4.1",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
diff --git a/app/scripts/lib/id-management.js b/app/scripts/lib/id-management.js
index 30a3141f1..5de1f438f 100644
--- a/app/scripts/lib/id-management.js
+++ b/app/scripts/lib/id-management.js
@@ -1,7 +1,10 @@
const ethUtil = require('ethereumjs-util')
+const Transaction = require('ethereumjs-tx')
+const configManager = require('./config-manager-singleton')
module.exports = IdManagement
+
function IdManagement(opts) {
if (!opts) opts = {}