cmd: fix transfer-history command initialization

This commit is contained in:
c9s 2023-07-25 15:20:09 +08:00
parent 6591ffad60
commit 99e1cfc873
No known key found for this signature in database
GPG Key ID: 7385E7E464CB0A54

View File

@ -47,19 +47,9 @@ var TransferHistoryCmd = &cobra.Command{
SilenceUsage: true, SilenceUsage: true,
RunE: func(cmd *cobra.Command, args []string) error { RunE: func(cmd *cobra.Command, args []string) error {
ctx := context.Background() ctx := context.Background()
configFile, err := cmd.Flags().GetString("config")
if err != nil {
return err
}
userConfig, err := bbgo.Load(configFile, false)
if err != nil {
return err
}
environ := bbgo.NewEnvironment() environ := bbgo.NewEnvironment()
if err := bbgo.BootstrapEnvironment(ctx, environ, userConfig); err != nil {
if err := environ.ConfigureExchangeSessions(userConfig); err != nil {
return err return err
} }
@ -107,10 +97,13 @@ var TransferHistoryCmd = &cobra.Command{
return fmt.Errorf("exchange session %s does not implement transfer service", sessionName) return fmt.Errorf("exchange session %s does not implement transfer service", sessionName)
} }
logrus.Infof("querying deposit history...")
deposits, err := exchange.QueryDepositHistory(ctx, asset, since, until) deposits, err := exchange.QueryDepositHistory(ctx, asset, since, until)
if err != nil { if err != nil {
return err return err
} }
for _, d := range deposits { for _, d := range deposits {
records = append(records, timeRecord{ records = append(records, timeRecord{
Record: d, Record: d,