mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
pass order id for order store exists
This commit is contained in:
parent
f4512f031c
commit
cc3da5b678
|
@ -18,11 +18,11 @@ func NewOrderStore() *OrderStore {
|
|||
}
|
||||
}
|
||||
|
||||
func (s *OrderStore) Exists(o types.Order) bool {
|
||||
func (s *OrderStore) Exists(oID uint64) (ok bool) {
|
||||
s.mu.Lock()
|
||||
defer s.mu.Unlock()
|
||||
|
||||
_, ok := s.orders[o.OrderID]
|
||||
_, ok = s.orders[oID]
|
||||
return ok
|
||||
}
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ var BuildCmd = &cobra.Command{
|
|||
return err
|
||||
}
|
||||
|
||||
userConfig, err := bbgo.Load(configFile)
|
||||
userConfig, err := bbgo.Preload(configFile)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user