From a9729b28d4c7881955b3a3c3f9e254d8847f4c48 Mon Sep 17 00:00:00 2001
From: nymius <155548262+nymius@users.noreply.github.com>
Date: Fri, 31 Jan 2025 12:10:56 -0300
Subject: [PATCH] fix(BIP174,BIP375): typo in PSBT_OUT_SP_V0_LABEL
Assuming a by one increment in the keytype of the silent payments output
fields, the following numeral to 0x09 in the hexadecimal system is 0x0a,
not 0x10.
---
bip-0174.mediawiki | 2 +-
bip-0375.mediawiki | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/bip-0174.mediawiki b/bip-0174.mediawiki
index 0fae5106..131e9f4f 100644
--- a/bip-0174.mediawiki
+++ b/bip-0174.mediawiki
@@ -715,7 +715,7 @@ required for aggregation. If sorting was done, then the keys must be in the sort
| [[bip-0375.mediawiki|375]]
|-
| Silent Payment Label
-| PSBT_OUT_SP_V0_LABEL = 0x10
+| PSBT_OUT_SP_V0_LABEL = 0x0a
| None
| No key data
| <32-bit little endian uint label>
diff --git a/bip-0375.mediawiki b/bip-0375.mediawiki
index d8565c77..7566b4ad 100644
--- a/bip-0375.mediawiki
+++ b/bip-0375.mediawiki
@@ -128,7 +128,7 @@ The new per-output types are defined as follows:
| 2
|-
| Silent Payment Label
-| PSBT_OUT_SP_V0_LABEL = 0x10
+| PSBT_OUT_SP_V0_LABEL = 0x0a
| None
| No key data
| <32-bit little endian uint label>