diff options
author | Thomas Huang <thomas.b.huang@gmail.com> | 2017-04-27 12:05:45 +0800 |
---|---|---|
committer | Thomas Huang <thomas.b.huang@gmail.com> | 2017-04-27 12:05:45 +0800 |
commit | 6bdb4c87288a522d9ea2e984bc1f6436d6c7369a (patch) | |
tree | 62c09f13aa36f582ddfbbca1b92302069035e061 /app/scripts/account-import-strategies | |
parent | afbe6f5e5fa18b663cfe68c40a05bcacda73e3ac (diff) | |
download | tangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.tar tangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.tar.gz tangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.tar.bz2 tangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.tar.lz tangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.tar.xz tangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.tar.zst tangerine-wallet-browser-6bdb4c87288a522d9ea2e984bc1f6436d6c7369a.zip |
Fix linting warnings
Diffstat (limited to 'app/scripts/account-import-strategies')
-rw-r--r-- | app/scripts/account-import-strategies/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/account-import-strategies/index.js b/app/scripts/account-import-strategies/index.js index d5124eb7f..96e2b5912 100644 --- a/app/scripts/account-import-strategies/index.js +++ b/app/scripts/account-import-strategies/index.js @@ -4,7 +4,7 @@ const ethUtil = require('ethereumjs-util') const accountImporter = { - importAccount(strategy, args) { + importAccount (strategy, args) { try { const importer = this.strategies[strategy] const privateKeyHex = importer.apply(null, args) |