From 39c0a9d7e639d34158944136a0ebf1cdce2c6318 Mon Sep 17 00:00:00 2001 From: henrynguyen5 Date: Wed, 7 Feb 2018 21:25:24 -0500 Subject: [PATCH] add console error --- common/sagas/wallet/wallet.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/common/sagas/wallet/wallet.ts b/common/sagas/wallet/wallet.ts index 5f86ba41..6f87b4c0 100644 --- a/common/sagas/wallet/wallet.ts +++ b/common/sagas/wallet/wallet.ts @@ -287,6 +287,7 @@ export function* unlockWeb3(): SagaIterator { const wallet = new Web3Wallet(address, network); yield put(setWallet(wallet)); } catch (err) { + console.error(err); // unset web3 node so node dropdown isn't disabled yield put(web3UnsetNode()); yield put(showNotification('danger', translate(err.message)));