From f71de3c65c4458d55aab6abe1e3615a361dccd68 Mon Sep 17 00:00:00 2001 From: Doug Kent Date: Thu, 30 Jul 2020 09:35:50 -0400 Subject: [PATCH] remove unused webReducer stuff --- src/reducers/web3Reducer.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/reducers/web3Reducer.ts b/src/reducers/web3Reducer.ts index e974f2219..6b329dbf2 100644 --- a/src/reducers/web3Reducer.ts +++ b/src/reducers/web3Reducer.ts @@ -1,18 +1,13 @@ export enum ActionTypes { WEB3_SET_ACCOUNT = "WEB3_SET_ACCOUNT", - OTHER_ACTION = "__any_other_action_type__", } export interface IWeb3State { - accounts: string[]; currentAccountAddress: string | null; - networkId: number; } const initialState: IWeb3State = { - accounts: [], currentAccountAddress: null, - networkId: 0, // unknown network }; const web3Reducer = (state = initialState, action: any) => {