From a08c3bc01b11fbd0e3a243359befbe9fc909edf4 Mon Sep 17 00:00:00 2001
From: Dan Finlay <dan@danfinlay.com>
Date: Tue, 21 Jun 2016 13:18:32 -0700
Subject: Auto linted

---
 app/scripts/lib/id-management.js | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

(limited to 'app/scripts/lib/id-management.js')

diff --git a/app/scripts/lib/id-management.js b/app/scripts/lib/id-management.js
index 30a3141f1..b9a2fc3a8 100644
--- a/app/scripts/lib/id-management.js
+++ b/app/scripts/lib/id-management.js
@@ -2,18 +2,18 @@ const ethUtil = require('ethereumjs-util')
 
 module.exports = IdManagement
 
-function IdManagement(opts) {
+function IdManagement (opts) {
   if (!opts) opts = {}
 
   this.keyStore = opts.keyStore
   this.derivedKey = opts.derivedKey
   this.hdPathString = "m/44'/60'/0'/0"
 
-  this.getAddresses =  function(){
-    return keyStore.getAddresses(this.hdPathString).map(function(address){ return '0x'+address })
+  this.getAddresses = function () {
+    return keyStore.getAddresses(this.hdPathString).map(function (address) { return '0x' + address })
   }
 
-  this.signTx = function(txParams){
+  this.signTx = function (txParams) {
     // normalize values
     txParams.to = ethUtil.addHexPrefix(txParams.to)
     txParams.from = ethUtil.addHexPrefix(txParams.from)
@@ -41,32 +41,32 @@ function IdManagement(opts) {
 
   this.signMsg = function (address, message) {
     // sign message
-    var privKeyHex = this.exportPrivateKey(address);
-    var privKey = ethUtil.toBuffer(privKeyHex);
-    var msgSig = ethUtil.ecsign(new Buffer(message.replace('0x',''), 'hex'), privKey);
-    var rawMsgSig = ethUtil.bufferToHex(concatSig(msgSig.v, msgSig.r, msgSig.s));
-    return rawMsgSig;
-  };
+    var privKeyHex = this.exportPrivateKey(address)
+    var privKey = ethUtil.toBuffer(privKeyHex)
+    var msgSig = ethUtil.ecsign(new Buffer(message.replace('0x', ''), 'hex'), privKey)
+    var rawMsgSig = ethUtil.bufferToHex(concatSig(msgSig.v, msgSig.r, msgSig.s))
+    return rawMsgSig
+  }
 
-  this.getSeed = function(){
+  this.getSeed = function () {
     return this.keyStore.getSeed(this.derivedKey)
   }
 
-  this.exportPrivateKey = function(address) {
+  this.exportPrivateKey = function (address) {
     var privKeyHex = ethUtil.addHexPrefix(this.keyStore.exportPrivateKey(address, this.derivedKey, this.hdPathString))
     return privKeyHex
   }
 }
 
-function pad_with_zeroes(number, length){
-  var my_string = '' + number;
+function pad_with_zeroes (number, length) {
+  var my_string = '' + number
   while (my_string.length < length) {
-    my_string = '0' + my_string;
+    my_string = '0' + my_string
   }
-  return my_string;
+  return my_string
 }
 
-function concatSig(v, r, s) {
+function concatSig (v, r, s) {
   r = pad_with_zeroes(ethUtil.fromSigned(r), 64)
   s = pad_with_zeroes(ethUtil.fromSigned(s), 64)
   r = ethUtil.stripHexPrefix(r.toString('hex'))
-- 
cgit