HuobiRDCenter / huobi_Golang

Go SDK for Huobi Spot API
https://www.htx.com/zh-cn/opend/newApiPages/
Apache License 2.0
176 stars 86 forks source link

Cannot unmarshal number into Go struct field CancelOrderByIdResponse.order-state of type string #51

Open gregzaitsev opened 11 months ago

gregzaitsev commented 11 months ago

Huobi response contains numeric order state in case of cancellation error, so this deserialization results in marshalling error:

result := order.CancelOrderByIdResponse{}
jsonErr := json.Unmarshal([]byte(postResp), &result)
gregzaitsev commented 10 months ago

Hi @eynzhang! Do you still maintain this repository?