From 06fc7e3ae3fd389555b69b5b68bb0cccc77c1b6f Mon Sep 17 00:00:00 2001 From: Jeremy Kun Date: Wed, 30 Mar 2016 14:35:21 -0700 Subject: [PATCH] guide_wallets.md: Fix typos, added clarification --- _includes/devdoc/guide_wallets.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/_includes/devdoc/guide_wallets.md b/_includes/devdoc/guide_wallets.md index 2599c844..736937b3 100644 --- a/_includes/devdoc/guide_wallets.md +++ b/_includes/devdoc/guide_wallets.md @@ -469,7 +469,7 @@ child, grandchild, and other descended keys with unlinkable deterministically-generated integer values. Each child key also gets a deterministically-generated seed from its parent, called a [chain code][/en/glossary/chain-code]{:#term-chain-code}{:.term}, so the compromising of one chain -code doesn't necessary compromise the integer sequence for the whole +code doesn't necessarily compromise the integer sequence for the whole hierarchy, allowing the [master chain code][/en/glossary/master-chain-code-and-private-key]{:#term-master-chain-code}{:.term} to continue being useful even if, for example, a web-based public key distribution program @@ -499,8 +499,9 @@ respectively, create either a child private key or child public key: {% endautocrossref %} - point( (parent_private_key + lefthand_hash_output) % G ) == child_public_key - point(child_private_key) == parent_public_key + point(lefthand_hash_output) + child_private_key == (parent_private_key + lefthand_hash_output) % G + child_public_key == point( (parent_private_key + lefthand_hash_output) % G ) + child_public_key == point(child_private_key) == parent_public_key + point(lefthand_hash_output) {% autocrossref %}