File 0001-lift-libsecp256k1-version.patch of Package python-electrum-ecc
From 59bcdf0ce2d206914fc48881cf9d4059d3fbad08 Mon Sep 17 00:00:00 2001 From: Jiri Slaby <jslaby@suse.cz> Date: Tue, 29 Jul 2025 10:06:03 +0200 Subject: [PATCH] lift libsecp256k1 version We have 6 in factory now. --- src/electrum_ecc/ecc_fast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/electrum_ecc/ecc_fast.py b/src/electrum_ecc/ecc_fast.py index 379737e739fb..d48bf29c77f6 100644 --- a/src/electrum_ecc/ecc_fast.py +++ b/src/electrum_ecc/ecc_fast.py @@ -44,7 +44,7 @@ class LibModuleMissing(Exception): pass # the new version should be tested and added to this list. # note: for a mapping between bitcoin-core/secp256k1 git tags and .so.V libtool version numbers, # see https://github.com/bitcoin-core/secp256k1/pull/1055#issuecomment-1227505189 -KNOWN_COMPATIBLE_ABI_VERSIONS = [5, 2, 1, 0, ] # try latest version first +KNOWN_COMPATIBLE_ABI_VERSIONS = [6, 5, 2, 1, 0, ] # try latest version first def load_library(): -- 2.50.1