Update CHANGELOG

pull/71/head v1.5.4
Miguel Mota 4 years ago
parent 26956fcaca
commit 52c4da8c70

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.5.4] - 2020-08-24
### Fixed
- Rank order for low market cap coins
## [1.5.3] - 2020-08-14
### Fixed
- Build error

@ -325,7 +325,7 @@ func NewCointop(config *Config) (*Cointop, error) {
// can remove this after everyone has cleared their cache
for _, v := range allCoinsSlugMap {
// Some APIs returns rank 0 for new coins
// or coins with low activity so we need to put them
// or coins with low market cap data so we need to put them
// at the end of the list.
if v.Rank == 0 {
v.Rank = 10000

@ -70,7 +70,7 @@ func (ct *Cointop) processCoins(coins []types.Coin) {
// Fix for https://github.com/miguelmota/cointop/issues/59
// some APIs returns rank 0 for new coins
// or coins with low activity so we need to put them
// or coins with low market cap data so we need to put them
// at the end of the list
if v.Rank == 0 {
v.Rank = 10000

Loading…
Cancel
Save