added fix for insufficient funds error from bitrex, looking at possibility to test it it

This commit is contained in:
Gert Wohlgemuth
2018-05-01 22:12:14 -07:00
parent 743a1f1604
commit 4c0f710a76
13 changed files with 57 additions and 38 deletions

View File

@@ -14,3 +14,10 @@ class OperationalException(BaseException):
Requires manual intervention.
This happens when an exchange returns an unexpected error during runtime.
"""
class NotEnoughFundsExeption(BaseException):
"""
This happens when the exchange reports that not enough funds where available. We do not want to stop
the bot in this case and just keep it going and suppress this message
"""