diff --git a/src/actions/BlockchainActions.js b/src/actions/BlockchainActions.js index 9a43bb6e..efddb58b 100644 --- a/src/actions/BlockchainActions.js +++ b/src/actions/BlockchainActions.js @@ -170,10 +170,9 @@ export const onNotification = (payload: any): PromiseAction => async (disp export const subscribe = (network: string): PromiseAction => async (dispatch: Dispatch, getState: GetState): Promise => { - const addresses: Array = getState().accounts.filter(a => a.network === network).map(a => a.address); // eslint-disable-line no-unused-vars + const accounts: Array = getState().accounts.filter(a => a.network === network).map(a => a.address); // eslint-disable-line no-unused-vars await TrezorConnect.blockchainSubscribe({ - // accounts: addresses, - accounts: [], + accounts, coin: network, });