Skip to content

Commit

Permalink
align fields and tags
Browse files Browse the repository at this point in the history
  • Loading branch information
c9s committed Mar 15, 2021
1 parent ab6b56d commit 61a19cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions pkg/exchange/binance/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

package version

const Version = "v1.13.0"
const Version = "v1.13.0-95-g32e48ed"

0 comments on commit 61a19cb

Please sign in to comment.