This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Description
When calling a class' random() method, the length parameter should only be required if the class has no LEN attribute.
Example:
>>> from iota import Address
>>> Address.random()
# Expected Result
Address(b'... 81 random trytes ...')
# Actual Result
TypeError: random() missing 1 required positional argument: 'length'