#71: handle seedhex
Merge request reports
Activity
changed milestone to %0.52.x
- classmethod
from_seed
is useless, as SigningKey class already create an instance from a bytes seed. -
from_seedhex
should be a classmethod : in general, every method from_xxx should convert to a bytes seed and return a cls(seed) instance. -
save_seedhex_file
should be removed. -
save_seedhex_file_from_seed
should be renamedsave_seedhex_file
and do that from the instance. - To save a seedhex_file from a seedhex string, one should create a Signingkey instance with from_seedhex(str), then use the save_seedhex_file(path) of the instance.
- classmethod
added 1 commit
- 36572ae8 - [mod] #71 (closed): rm from_seed, and save_seedhex_file
mentioned in commit de855d0a
added Crypto label
added Feature label
Please register or sign in to reply