ccxt has pairs in BASE_CURRENCY / QUOTE_CURRENCY format, remove bittrex references

This commit is contained in:
Samuel Husso
2018-01-31 17:29:07 +02:00
parent f0945c354e
commit b562239ec8
4 changed files with 15 additions and 14 deletions

View File

@@ -406,7 +406,7 @@ CONF_SCHEMA = {
'type': 'array',
'items': {
'type': 'string',
'pattern': '^[0-9A-Z]+_[0-9A-Z]+$'
'pattern': '^[0-9A-Z]+/[0-9A-Z]+$'
},
'uniqueItems': True
},
@@ -414,7 +414,7 @@ CONF_SCHEMA = {
'type': 'array',
'items': {
'type': 'string',
'pattern': '^[0-9A-Z]+_[0-9A-Z]+$'
'pattern': '^[0-9A-Z]+/[0-9A-Z]+$'
},
'uniqueItems': True
}