Fail with more descriptive error when processing message involving inactive coin.

This commit is contained in:
tecnovert
2022-10-12 22:37:35 +02:00
parent 3ed6781c9f
commit c7bbdc7022
3 changed files with 24 additions and 4 deletions

View File

@@ -25,6 +25,13 @@ class AutomationConstraint(ValueError):
pass
class InactiveCoin(Exception):
def __init__(self, coinid):
self.coinid = coinid
def __str__(self):
return str(self.coinid)
def ensure(v, err_string):
if not v:
raise ValueError(err_string)