We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5e9b69 commit 24c6594Copy full SHA for 24c6594
src/aleph/vm/orchestrator/chain.py
@@ -23,7 +23,7 @@ def token(self) -> str | None:
23
return self.super_token or self.standard_token
24
25
@root_validator(pre=True)
26
- def check_tokens(self, values):
+ def check_tokens(cls, values):
27
if not values.get("standard_token") and not values.get("super_token"):
28
msg = "At least one of standard_token or super_token must be provided."
29
raise ValueError(msg)
0 commit comments