From 80e0872dc4ba060deb3655a3f794b5cccc255209 Mon Sep 17 00:00:00 2001 From: Ouziel Slama Date: Sun, 8 Dec 2024 12:27:57 +0000 Subject: [PATCH] support 68 length DER encoded signatures --- counterparty-core/counterpartycore/lib/gettxinfo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/counterparty-core/counterpartycore/lib/gettxinfo.py b/counterparty-core/counterpartycore/lib/gettxinfo.py index 4adb2e18c..04d4b72cb 100644 --- a/counterparty-core/counterpartycore/lib/gettxinfo.py +++ b/counterparty-core/counterpartycore/lib/gettxinfo.py @@ -160,6 +160,7 @@ def get_der_signature_sighash_flag(value): if not isinstance(value, bytes): return None lenght_by_prefix = { + "3041": 68, "3042": 69, "3043": 70, "3044": 71,