bug fix: book order limit for binance

This commit is contained in:
Nullart
2018-06-19 21:33:42 +08:00
parent 65ce10a124
commit 97a621325b
2 changed files with 11 additions and 1 deletions

View File

@@ -83,7 +83,7 @@ CONF_SCHEMA = {
'properties': {
'use_book_order': {'type': 'boolean'},
'book_order_min': {'type': 'number', 'minimum': 1},
'book_order_max': {'type': 'number', 'minimum': 1}
'book_order_max': {'type': 'number', 'minimum': 1, 'maximum': 50}
},
'required': ['use_book_order']
},