-
Notifications
You must be signed in to change notification settings - Fork 5.6k
BIP-32: Minor grammar fixes #984
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
ACK |
Related to: bitcoin/bips#984
@@ -211,7 +211,7 @@ Private and public keys must be kept safe as usual. Leaking a private key means | |||
Somewhat more care must be taken regarding extended keys, as these correspond to an entire (sub)tree of keys. | |||
|
|||
One weakness that may not be immediately obvious, is that knowledge of a parent extended public key plus any non-hardened private key descending from it is equivalent to knowing the parent extended private key (and thus every private and public key descending from it). This means that extended public keys must be treated more carefully than regular public keys. | |||
It is also the reason for the existence of hardened keys, and why they are used for the account level in the tree. This way, a leak of account-specific (or below) private key never risks compromising the master or other accounts. | |||
It is also the reason for the existence of hardened keys, and why they are used for the account level in the tree. This way, a leak of account-specific (or below) private keys never risks compromising the master or other accounts. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you switch "key" to the plural, shouldn't the "s" from "risks" be removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, I think "risks" would stay as it is, because it's the verb for the subject "leak," not "keys." If you remove what's in the middle of the sentence:
This way, a leak ... never risks compromising the master or other accounts.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, makes sense.
@sipa This was changed after your last ACK... re-ACK? |
ACK, no alteration of meaning in the text AFAICT. Pinging @sipa for sign-off on the second commit. |
ACK 688b0da |
Thanks @sipa. |
Very small grammar fix of "keys" to "key." I checked across all the currently open PRs related to BIP-32 (#293, #575, #576, #695, #785, #885), and I don't think any of them have suggested this change yet.