fix log message to be lowercases

This commit is contained in:
zenix 2022-04-07 11:15:25 +09:00
parent 7778f9b590
commit d0c3390f84

View File

@ -365,7 +365,7 @@ var BacktestCmd = &cobra.Command{
startPrice, ok := session.StartPrice(symbol)
if !ok {
return fmt.Errorf("start price not found: %s, %s. Run --sync first", symbol, exchangeName)
return fmt.Errorf("start price not found: %s, %s. run --sync first", symbol, exchangeName)
}
lastPrice, ok := session.LastPrice(symbol)