We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This raises no module named MAML_Ed25519
from mam_lite import MAML_Ed25519 addr_test = Address(''.join(random.choices(string.ascii_uppercase + '9', k=81))) mam_stream_1 = MAML_Ed25519(root_address=addr_test, channel_password='test_pass') mam_stream_2 = MAML_Ed25519(root_address=addr_test, channel_password='test_pass')
Fixed by changing to new class name:
from mam_lite import MaskedAuthMsgStream addr_test = Address(''.join(random.choices(string.ascii_uppercase + '9', k=81))) mam_stream_1 = MaskedAuthMsgStream(root_address=addr_test, write_pwd='test_pass') mam_stream_2 = MaskedAuthMsgStream(root_address=addr_test, write_pwd='test_pass')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This raises no module named MAML_Ed25519
Fixed by changing to new class name:
The text was updated successfully, but these errors were encountered: