From 37e78df6828452247f16e8bbd264ac78e9fd0b66 Mon Sep 17 00:00:00 2001 From: Daniel Kaspo Date: Wed, 7 Jun 2017 22:37:39 -0400 Subject: [PATCH] Logging public and private key temporarily for Travis --- common/containers/Tabs/WalletDecrypt/KeystoreDecrypt/index.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/common/containers/Tabs/WalletDecrypt/KeystoreDecrypt/index.jsx b/common/containers/Tabs/WalletDecrypt/KeystoreDecrypt/index.jsx index 1351d0c7..780815a0 100644 --- a/common/containers/Tabs/WalletDecrypt/KeystoreDecrypt/index.jsx +++ b/common/containers/Tabs/WalletDecrypt/KeystoreDecrypt/index.jsx @@ -20,6 +20,7 @@ export default class KeystoreDecrypt extends Component { const decryptedWallet = wallet.fromV3(keyStoreString, 'asdfasdfasdf', true); const privateHex = ethUtil.bufferToHex(decryptedWallet._privKey); const publicHex = ethUtil.bufferToHex(ethUtil.privateToAddress(decryptedWallet._privKey)); + console.log(privateHex, publicHex); // TODO: Remove console log, it's only here to let Travis pass } catch (e) { console.error('Could not parse Keystore file.', e); }