fix(log): rename OrderId to OrderNo for consistency in balance logging

This commit is contained in:
Chang lue Tsen
2025-09-05 10:25:19 -04:00
parent d0d03e724e
commit 1d878592ed
9 changed files with 25 additions and 14 deletions
+1 -1
View File
@@ -225,7 +225,7 @@ func (r *ResetSubscribe) Unmarshal(data []byte) error {
type Balance struct {
Type uint16 `json:"type"`
Amount int64 `json:"amount"`
OrderId int64 `json:"order_id,omitempty"`
OrderNo string `json:"order_no,omitempty"`
Balance int64 `json:"balance"`
Timestamp int64 `json:"timestamp"`
}