From 335cd9fa28e39ec47f0a177ac4e036a7d3298de5 Mon Sep 17 00:00:00 2001 From: philemon Date: Sun, 18 Dec 2016 20:12:02 +0300 Subject: [PATCH] modified: Recovering-Keys-Without-MMGen.md --- Recovering-Keys-Without-MMGen.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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