|
@@ -51,10 +51,6 @@ func (criteria OrderListCriteria) Values() map[string]string {
|
|
|
criteria.Limit = 500
|
|
|
}
|
|
|
|
|
|
- if s := strings.TrimSpace(criteria.Status); s != "" {
|
|
|
- values["status"] = s
|
|
|
- }
|
|
|
-
|
|
|
if criteria.Symbols != nil && len(criteria.Symbols) > 0 {
|
|
|
values["symbols"] = strings.Join(criteria.Symbols, ",")
|
|
|
}
|
|
@@ -68,16 +64,12 @@ func (criteria OrderListCriteria) Values() map[string]string {
|
|
|
values["until"] = criteria.Until.In(time.UTC).Format(time.RFC3339)
|
|
|
}
|
|
|
|
|
|
- if criteria.Nested {
|
|
|
- values["nested"] = "true"
|
|
|
- } else {
|
|
|
- values["nested"] = "false"
|
|
|
- }
|
|
|
-
|
|
|
if criteria.Side != nil {
|
|
|
values["side"] = *criteria.Side
|
|
|
}
|
|
|
|
|
|
+ values["status"] = strings.TrimSpace(criteria.Status)
|
|
|
+ values["nested"] = "true"
|
|
|
values["limit"] = fmt.Sprintf("%d", criteria.Limit)
|
|
|
values["after"] = criteria.After.In(time.UTC).Format(time.RFC3339)
|
|
|
values["direction"] = "asc"
|