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
(https://github.com/nebulasio/neb.py/blob/master/nebpysdk/src/core/Address.py#L125)
@classmethod def parse_from_bytes(cls, byte): if len(byte) != cls.__AddressLength or byte[0] != cls.__PaddingByte[0]: raise Exception("invalid address bytes") checksum = byte[cls.__AddressLength - cls.__AddressChecksumLength:] checkdata = byte[:cls.__AddressLength - cls.__AddressChecksumLength] if not cls.byte_equal(cls.check_sum(checkdata), checksum): raise Exception("invalid address check sum") return Address(byte)
@ideaalloc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
@ideaalloc
The text was updated successfully, but these errors were encountered: