diff --git a/src/reducers/AccountsReducer.js b/src/reducers/AccountsReducer.js index 047451de..22994c3f 100644 --- a/src/reducers/AccountsReducer.js +++ b/src/reducers/AccountsReducer.js @@ -42,19 +42,6 @@ export type State = Array; const initialState: State = []; -export const findAccount = ( - state: State, - index: number, - deviceState: string, - network: string -): ?Account => - state.find( - a => - (a.deviceState === deviceState || a.imported) && - a.index === index && - a.network === network - ); - export const findDeviceAccounts = ( state: State, device: TrezorDevice,