Skip to content

Commit

Permalink
Fix invalid period in type declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
thrasher- committed Mar 26, 2018
1 parent caa3078 commit cc4c8a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchanges/okex/okex_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ type SpotPrice struct {
Last float64 `json:"last,string"`
Sell float64 `json:"sell,string"`
UnitAmount float64 `json:"unit_amount,string"`
Vol float64 `json:"vol.string"`
Vol float64 `json:"vol,string"`
} `json:"ticker"`
Result bool `json:"result"`
Error interface{} `json:"error_code"`
Expand Down

0 comments on commit cc4c8a0

Please sign in to comment.