Fix invalid period in type declaration

Fixes https://github.com/thrasher-/gocryptotrader/issues/110
This commit is contained in:
Adrian Gallagher
2018-03-26 12:44:34 +11:00
parent caa3078d23
commit cc4c8a0203

View File

@@ -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"`