diff options
author | Bitcoin Hodler <bitcoinhodler@safe-mail.net> | 2022-02-07 06:24:42 +0000 |
---|---|---|
committer | Bitcoin Hodler <bitcoinhodler@safe-mail.net> | 2022-02-07 06:24:42 +0000 |
commit | bac30e85f384ced16ab81eca755d81cc0a72d00b (patch) | |
tree | f81f73aef6adf33b206da90beaa0e04ebbbec0e7 /doc/descriptors.md | |
parent | 1e7564eca8a688f39c75540877ec3bdfdde766b1 (diff) |
docs: Move explanation of hardened key syntax closer to KEY section
Before 7cedafc5412857404e9a6c3450b100cb8ee4081a added the TREE
section, this line appeared right after the KEY section.
It doesn't really fit in its former location since it's the KEY
section that discusses derivation path syntax, not the TREE section.
Diffstat (limited to 'doc/descriptors.md')
-rw-r--r-- | doc/descriptors.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/descriptors.md b/doc/descriptors.md index 57a0f99d70..318d065fdb 100644 --- a/doc/descriptors.md +++ b/doc/descriptors.md @@ -90,12 +90,12 @@ Descriptors consist of several types of expressions. The top level expression is - Optionally followed by a single `/*` or `/*'` final step to denote all (direct) unhardened or hardened children. - The usage of hardened derivation steps requires providing the private key. +(Anywhere a `'` suffix is permitted to denote hardened derivation, the suffix `h` can be used instead.) + `TREE` expressions: - any `SCRIPT` expression - An open brace `{`, a `TREE` expression, a comma `,`, a `TREE` expression, and a closing brace `}` -(Anywhere a `'` suffix is permitted to denote hardened derivation, the suffix `h` can be used instead.) - `ADDR` expressions are any type of supported address: - P2PKH addresses (base58, of the form `1...` for mainnet or `[nm]...` for testnet). Note that P2PKH addresses in descriptors cannot be used for P2PK outputs (use the `pk` function instead). - P2SH addresses (base58, of the form `3...` for mainnet or `2...` for testnet, defined in [BIP 13](https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki)). |