cmd: change trades cmd time range to just 1 day

This commit is contained in:
c9s 2022-01-27 09:26:24 +08:00
parent c3c2822c82
commit 44efbce8eb

View File

@ -81,7 +81,7 @@ var tradesCmd = &cobra.Command{
}
now := time.Now()
since := now.Add(-3 * 24 * time.Hour)
since := now.Add(-24 * time.Hour)
tradeHistoryService, ok := session.Exchange.(types.ExchangeTradeHistoryService)
if !ok {