aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-10-05 04:26:51 +0800
committerDan Finlay <dan@danfinlay.com>2016-10-05 04:26:51 +0800
commit769bd8e2eee5f322f5883407e9fd779cf2a59e97 (patch)
tree9ccb7bd0368046f997273d3d4849f282a20027cd
parentca57fc0f52809882a730f8767cbbffb0acfc0b6d (diff)
downloadtangerine-wallet-browser-769bd8e2eee5f322f5883407e9fd779cf2a59e97.tar
tangerine-wallet-browser-769bd8e2eee5f322f5883407e9fd779cf2a59e97.tar.gz
tangerine-wallet-browser-769bd8e2eee5f322f5883407e9fd779cf2a59e97.tar.bz2
tangerine-wallet-browser-769bd8e2eee5f322f5883407e9fd779cf2a59e97.tar.lz
tangerine-wallet-browser-769bd8e2eee5f322f5883407e9fd779cf2a59e97.tar.xz
tangerine-wallet-browser-769bd8e2eee5f322f5883407e9fd779cf2a59e97.tar.zst
tangerine-wallet-browser-769bd8e2eee5f322f5883407e9fd779cf2a59e97.zip
Removed hex prefix from private key export
For compatibility with Jaxx, MEW, and Geth. Fixes #687
-rw-r--r--CHANGELOG.md1
-rw-r--r--ui/app/components/account-export.js9
2 files changed, 7 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ddc354e89..0cdfcd99c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@
- Fix bug where chosen FIAT exchange rate does no persist when switching networks
- Fix additional parameters that made MetaMask sometimes receive errors from Parity.
- Fix bug where invalid transactions would still open the MetaMask popup.
+- Removed hex prefix from private key export, to increase compatibility with Geth, MyEtherWallet, and Jaxx.
## 2.13.1 2016-09-23
diff --git a/ui/app/components/account-export.js b/ui/app/components/account-export.js
index f36b9faeb..6d8b099a5 100644
--- a/ui/app/components/account-export.js
+++ b/ui/app/components/account-export.js
@@ -3,6 +3,7 @@ const h = require('react-hyperscript')
const inherits = require('util').inherits
const copyToClipboard = require('copy-to-clipboard')
const actions = require('../actions')
+const ethUtil = require('ethereumjs-util')
module.exports = ExportAccountView
@@ -61,7 +62,9 @@ ExportAccountView.prototype.render = function () {
if (accountExported) {
return h('div.privateKey', {
-
+ style: {
+ margin: '0 20px',
+ },
}, [
h('label', 'Your private key (click to copy):'),
h('p.error.cursor-pointer', {
@@ -72,9 +75,9 @@ ExportAccountView.prototype.render = function () {
width: '100%',
},
onClick: function (event) {
- copyToClipboard(accountDetail.privateKey)
+ copyToClipboard(ethUtil.stripHexPrefix(accountDetail.privateKey))
},
- }, accountDetail.privateKey),
+ }, ethUtil.stripHexPrefix(accountDetail.privateKey)),
h('button', {
onClick: () => this.props.dispatch(actions.backToAccountDetail(this.props.address)),
}, 'Done'),