Remove Bity Rates from Local Storage (#435)

* Remove bityRates from localstorage

* Store swap.bityRates in ls as initial value

* Store swap bityrates as empty obj in ls
This commit is contained in:
James Prado 2017-11-21 14:55:46 -05:00 committed by Daniel Ternyak
parent f9b64d1f25
commit d28f2cee1f
1 changed files with 2 additions and 1 deletions

View File

@ -111,12 +111,13 @@ const configureStore = () => {
languageSelection: state.config.languageSelection,
customNodes: state.config.customNodes
},
swap: state.swap,
swap: { ...state.swap, bityRates: {} },
customTokens: state.customTokens
});
}),
1000
);
return store;
};