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 3dd932a commit cc54290Copy full SHA for cc54290
test.py
@@ -74,7 +74,7 @@ def load_operator_credentials():
74
"""Load operator credentials from environment variables."""
75
try:
76
operator_id = AccountId.from_string(os.getenv('OPERATOR_ID'))
77
- operator_key = PrivateKey.from_string_ecdsa(os.getenv('OPERATOR_KEY'))
+ operator_key = PrivateKey.from_string_der(os.getenv('OPERATOR_KEY'))
78
except Exception as e:
79
print(f"Error parsing operator credentials: {e}")
80
print(traceback.format_exc())
0 commit comments