Added support for Binance exchange

This commit is contained in:
Ryan O'Hara-Reid
2018-02-01 16:39:26 +11:00
parent 5aefe64e53
commit 28bd0e52bc
9 changed files with 974 additions and 2 deletions

View File

@@ -89,7 +89,7 @@ func TestGetEnabledExchanges(t *testing.T) {
}
exchanges := cfg.GetEnabledExchanges()
if len(exchanges) != 21 {
if len(exchanges) != 22 {
t.Error(
"Test failed. TestGetEnabledExchanges. Enabled exchanges value mismatch",
)
@@ -141,7 +141,7 @@ func TestGetDisabledExchanges(t *testing.T) {
}
func TestCountEnabledExchanges(t *testing.T) {
defaultEnabledExchanges := 21
defaultEnabledExchanges := 22
GetConfigEnabledExchanges := GetConfig()
err := GetConfigEnabledExchanges.LoadConfig(ConfigTestFile)
if err != nil {