diff --git a/Recovering-Keys-Without-MMGen.md b/Recovering-Keys-Without-MMGen.md index c35c77e..962c1b8 100644 --- a/Recovering-Keys-Without-MMGen.md +++ b/Recovering-Keys-Without-MMGen.md @@ -41,13 +41,13 @@ hexadecimal format, and 2) converting the hex keys to wallet interchange We'll solve this task using standard command-line utilities available on any Linux or other Unix-like system. -The first thing we must do is convert the key to binary form and store it in a +The first thing we must do is convert the seed to binary form and store it in a file. For that we use 'xxd', a handy tool for converting binary to hex and vice versa: $ echo 456d 7f5f 1c4b fe3b c916 b875 60ae 6a3e | xxd -r -p > myseed.bin -Note that we've omitted the key's checksum. +Note that we've omitted the seed's checksum. #### Generating the keys