align fields and tags

This commit is contained in:
c9s 2021-03-15 17:31:07 +08:00
parent ab6b56d91e
commit 61a19cbfb4
2 changed files with 4 additions and 5 deletions

View File

@ -410,11 +410,10 @@ type KLine struct {
Open string `json:"o"`
Close string `json:"c"`
High string `json:"h"`
Low string `json:"l"`
Low string `json:"l"`
Volume string `json:"v"` // base asset volume (like 10 BTC)
QuoteVolume string `json:"q"` // quote asset volume
Volume string `json:"v"` // base asset volume (like 10 BTC)
QuoteVolume string `json:"q"` // quote asset volume
TakerBaseVolume string `json:"V"` // taker buy base asset volume (like 10 BTC)
TakerQuoteVolume string `json:"Q"` // taker buy quote asset volume (like 1000USDT)

View File

@ -2,5 +2,5 @@
package version
const Version = "v1.13.0"
const Version = "v1.13.0-95-g32e48ed"