Fix Runtime by adding TotalRuntimeInSeconds
This commit is contained in:
@@ -692,6 +692,9 @@ public static class PostgreSqlMappers
|
||||
Name = entity.Name,
|
||||
Ticker = entity.Ticker,
|
||||
StartupTime = entity.StartupTime,
|
||||
LastStartTime = entity.LastStartTime,
|
||||
LastStopTime = entity.LastStopTime,
|
||||
AccumulatedRunTimeSeconds = entity.AccumulatedRunTimeSeconds,
|
||||
TradeWins = entity.TradeWins,
|
||||
TradeLosses = entity.TradeLosses,
|
||||
Pnl = entity.Pnl,
|
||||
@@ -719,6 +722,9 @@ public static class PostgreSqlMappers
|
||||
Name = bot.Name,
|
||||
Ticker = bot.Ticker,
|
||||
StartupTime = bot.StartupTime,
|
||||
LastStartTime = bot.LastStartTime,
|
||||
LastStopTime = bot.LastStopTime,
|
||||
AccumulatedRunTimeSeconds = bot.AccumulatedRunTimeSeconds,
|
||||
TradeWins = bot.TradeWins,
|
||||
TradeLosses = bot.TradeLosses,
|
||||
Pnl = bot.Pnl,
|
||||
|
||||
Reference in New Issue
Block a user