diff --git a/app/reducers/address.js b/app/reducers/address.js index 7ecb63f5..6bc40de4 100644 --- a/app/reducers/address.js +++ b/app/reducers/address.js @@ -24,11 +24,15 @@ export function getAddress() { // Send IPC event for getinfo export const newAddress = type => async (dispatch) => { dispatch(getAddress()) + console.log('getting new address type: ', addressTypes[type]) ipcRenderer.send('lnd', { msg: 'newaddress', data: { type: addressTypes[type] } }) } // Receive IPC event for info -export const receiveAddress = (event, address) => dispatch => dispatch({ type: RECEIVE_ADDRESS, address }) +export const receiveAddress = (event, address) => dispatch => { + console.log('address: ', address) + dispatch({ type: RECEIVE_ADDRESS, address }) +} // ------------------------------------ // Action Handlers diff --git a/resources/bin/darwin/lnd b/resources/bin/darwin/lnd index 1380808f..8bb44a54 100755 Binary files a/resources/bin/darwin/lnd and b/resources/bin/darwin/lnd differ