diff options
author | Pieter Wuille <pieter@wuille.net> | 2021-08-30 13:45:22 -0400 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2021-09-06 11:05:33 +0800 |
commit | 2b986b3f074120ce491253402609f1efacc76eae (patch) | |
tree | 688b5961818993bdce20d6b633fb2f3f0eb8b405 /doc | |
parent | 466acb3fbcf5917ecd34d958b8d5338bd0b41112 (diff) |
doc: mention bech32m/BIP350 in doc/descriptors.md
Github-Pull: #22837
Rebased-From: d2a09c83554cec864a27e704cf2a0d513691a567
Diffstat (limited to 'doc')
-rw-r--r-- | doc/descriptors.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/descriptors.md b/doc/descriptors.md index 181ff77e50..26937fa59f 100644 --- a/doc/descriptors.md +++ b/doc/descriptors.md @@ -91,7 +91,7 @@ Descriptors consist of several types of expressions. The top level expression is `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)). -- Segwit addresses (bech32, of the form `bc1...` for mainnet or `tb1...` for testnet, defined in [BIP 173](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki)). +- Segwit addresses (bech32 and bech32m, of the form `bc1...` for mainnet or `tb1...` for testnet, defined in [BIP 173](https://github.com/bitcoin/bips/blob/master/bip-0173.mediawiki) and [BIP 350](https://github.com/bitcoin/bips/blob/master/bip-0350.mediawiki)). ## Explanation |