1
0
mirror of https://github.com/bitcoin/bips.git synced 2025-01-18 21:35:13 +01:00

BIP-47: correct base58check version byte

Previously specified version byte only produced the desired leading character if the check bytes were omitted

Thanks to TD from Samourai Wallet for pointing this out
This commit is contained in:
Justus Ranvier 2015-09-21 17:07:39 -05:00
parent c792b98687
commit 873827d796
No known key found for this signature in database
GPG Key ID: 2A5FDA70EAD9E623

View File

@ -1,5 +1,7 @@
RECENT CHANGES:
* (21 Sep 2015) Correct base58check version byte
* (18 Sep 2015) Clarify decoding of notification transactions
<pre>
@ -72,7 +74,7 @@ A payment code contains the following elements:
When a payment code is presented to the user, it SHOULD be presented encoded in Base58Check form.
* The version byte is: 0x23 (produces a "P" as the first character of the serialized form)
* The version byte is: 0x47 (produces a "P" as the first character of the serialized form)
* The payload is the binary serialization of the payment code
===Protocol===