mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
re-add botId to trade object
This commit is contained in:
parent
4e171457fe
commit
b937fdf07b
|
@ -522,6 +522,7 @@ export function createBotSubStore(botId: string) {
|
||||||
// Add botId to all trades
|
// Add botId to all trades
|
||||||
trades = trades.map((t) => ({
|
trades = trades.map((t) => ({
|
||||||
...t,
|
...t,
|
||||||
|
botId,
|
||||||
botTradeId: `${botId}__${t.trade_id}`,
|
botTradeId: `${botId}__${t.trade_id}`,
|
||||||
}));
|
}));
|
||||||
commit('updateTrades', { trades, tradesCount });
|
commit('updateTrades', { trades, tradesCount });
|
||||||
|
@ -576,6 +577,7 @@ export function createBotSubStore(botId: string) {
|
||||||
|
|
||||||
const openTrades = result.data.map((t) => ({
|
const openTrades = result.data.map((t) => ({
|
||||||
...t,
|
...t,
|
||||||
|
botId,
|
||||||
botTradeId: `${botId}__${t.trade_id}`,
|
botTradeId: `${botId}__${t.trade_id}`,
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,7 @@ export interface Trade {
|
||||||
* BotId - only available on "all" methods.
|
* BotId - only available on "all" methods.
|
||||||
* corresponds to the UI (ftbot.1) - does NOT relate to the backend
|
* corresponds to the UI (ftbot.1) - does NOT relate to the backend
|
||||||
*/
|
*/
|
||||||
|
botId: string;
|
||||||
botTradeId: string;
|
botTradeId: string;
|
||||||
trade_id: number;
|
trade_id: number;
|
||||||
pair: string;
|
pair: string;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user