Skip to content
New issue

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

example.py uses old class name #5

Open
Meph1587 opened this issue Jun 9, 2019 · 0 comments
Open

example.py uses old class name #5

Meph1587 opened this issue Jun 9, 2019 · 0 comments

Comments

@Meph1587
Copy link

Meph1587 commented Jun 9, 2019

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')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant