adshao / go-binance

A Go SDK for Binance API
MIT License
1.54k stars 677 forks source link

Fix userDataStream json `array` unmarshal err #446

Closed 0xkookoo closed 1 year ago

0xkookoo commented 1 year ago

error as below: json: cannot unmarshal object into Go value of type []spotws.WsOCOOrder

I fixed it and then realised that we are not tracking userData AccountUpdate (not sure if you were blocked by this unmarshal issue), so I added it as well. Otherwise we may have the same error : json: cannot unmarshal object into Go value of type []spotws.WsAccountUpdate

0xkookoo commented 1 year ago

@adshao Please help review