Split up common.go, file path fixes and much more

This commit is contained in:
Adrian Gallagher
2019-06-04 17:04:18 +10:00
parent 8c62316e82
commit e965e54e09
74 changed files with 524 additions and 617 deletions

View File

@@ -138,7 +138,7 @@ func (y *Yobit) FetchTradablePairs(asset assets.AssetType) ([]string, error) {
var currencies []string
for x := range info.Pairs {
currencies = append(currencies, common.StringToUpper(x))
currencies = append(currencies, strings.ToUpper(x))
}
return currencies, nil