From 63da98e1bd255d45eda16290bfc6d7261bf60a21 Mon Sep 17 00:00:00 2001 From: Akira Chiku Date: Sun, 13 Aug 2017 14:46:45 +0900 Subject: [PATCH] Fix ch05 sentence "The public keys do not need to be preloaded or" -> "The public keys need to be preloaded or" --- ch05.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch05.asciidoc b/ch05.asciidoc index d16989de..cff94a3a 100644 --- a/ch05.asciidoc +++ b/ch05.asciidoc @@ -65,7 +65,7 @@ image::images/mbc2_0503.png["HD wallet"] HD wallets offer two major advantages over random (nondeterministic) keys. First, the tree structure can be used to express additional organizational meaning, such as when a specific branch of subkeys is used to receive incoming payments and a different branch is used to receive change from outgoing payments. Branches of keys can also be used in corporate settings, allocating different branches to departments, subsidiaries, specific functions, or accounting categories. -The second advantage of HD wallets is that users can create a sequence of public keys without having access to the corresponding private keys. This allows HD wallets to be used on an insecure server or in a receive-only capacity, issuing a different public key for each transaction. The public keys do not need to be preloaded or derived in advance, yet the server doesn't have the private keys that can spend the funds. +The second advantage of HD wallets is that users can create a sequence of public keys without having access to the corresponding private keys. This allows HD wallets to be used on an insecure server or in a receive-only capacity, issuing a different public key for each transaction. The public keys need to be preloaded or derived in advance, yet the server doesn't have the private keys that can spend the funds. ==== Seeds and Mnemonic Codes (BIP-39)