Skip to content
This repository has been archived by the owner on Nov 29, 2022. It is now read-only.

Overflow #64

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions rest/private/orders/place-order.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ type ResponseForPlaceOrder struct {
RemainingSize float64 `json:"remainingSize"`
FilledSize float64 `json:"filledSize"`

ID int `json:"id"`
Ioc bool `json:"ioc"`
PostOnly bool `json:"postOnly"`
ReduceOnly bool `json:"reduceOnly"`
ID int64 `json:"id"`
Ioc bool `json:"ioc"`
PostOnly bool `json:"postOnly"`
ReduceOnly bool `json:"reduceOnly"`

CreatedAt time.Time `json:"createdAt"`
}
Expand Down