mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
Remove unused getter
This commit is contained in:
parent
a58f678757
commit
cbd87edb35
|
@ -51,7 +51,6 @@ export enum BotStoreGetters {
|
||||||
currentLocks = 'currentLocks',
|
currentLocks = 'currentLocks',
|
||||||
plotConfig = 'plotConfig',
|
plotConfig = 'plotConfig',
|
||||||
availablePlotConfigNames = 'availablePlotConfigNames',
|
availablePlotConfigNames = 'availablePlotConfigNames',
|
||||||
plotConfigNames = 'plotConfigNames',
|
|
||||||
plotConfigName = 'plotConfigName',
|
plotConfigName = 'plotConfigName',
|
||||||
timeframe = 'timeframe',
|
timeframe = 'timeframe',
|
||||||
isTrading = 'isTrading',
|
isTrading = 'isTrading',
|
||||||
|
@ -97,10 +96,6 @@ export default {
|
||||||
[BotStoreGetters.availablePlotConfigNames](state: FtbotStateType): string[] {
|
[BotStoreGetters.availablePlotConfigNames](state: FtbotStateType): string[] {
|
||||||
return state.availablePlotConfigNames;
|
return state.availablePlotConfigNames;
|
||||||
},
|
},
|
||||||
// TODO: is the following even used?
|
|
||||||
[BotStoreGetters.plotConfigNames](state: FtbotStateType): string[] {
|
|
||||||
return Object.keys(state.customPlotConfig);
|
|
||||||
},
|
|
||||||
[BotStoreGetters.plotConfigName](state: FtbotStateType): string {
|
[BotStoreGetters.plotConfigName](state: FtbotStateType): string {
|
||||||
return state.plotConfigName;
|
return state.plotConfigName;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user