Browse Source

fix(console.log): remove logs

renovate/lint-staged-8.x
Jack Mallers 8 years ago
parent
commit
a0965c9929
  1. 1
      app/lnd/methods/index.js
  2. 1
      app/reducers/ticker.js

1
app/lnd/methods/index.js

@ -21,7 +21,6 @@ export default function (lnd, event, msg, data) {
case 'info':
info(lnd)
.then((infoData) => {
console.log('infoData: ', infoData)
event.sender.send('receiveInfo', infoData)
event.sender.send('receiveCryptocurrency', infoData.chains[0])
})

1
app/reducers/ticker.js

@ -57,7 +57,6 @@ export const fetchTicker = () => async (dispatch) => {
export const receiveCryptocurrency = (event, currency) => (dispatch) => {
dispatch({ type: SET_CURRENCY, currency: cryptoTickers[currency] })
dispatch({ type: SET_CRYPTO, crypto: cryptoTickers[currency] })
// dispatch({ type: SET_CRYPTO, crypto: 'ltc' })
}

Loading…
Cancel
Save