From 53d89ecc9ab061e0df432679389a107fe4639888 Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Wed, 8 May 2024 22:22:51 +0300 Subject: [PATCH] Bump libsecp256k1 from v0.4.1 to v0.5.0 This release includes algorithmic improvements which increase the speed of key generation and signing. At the same time, the binary size has been reduced significantly. Full changelog: https://github.com/bitcoin-core/secp256k1/blob/master/CHANGELOG.md#050---2024-05-06 The ABI is backward compatible with versions 0.4.x and 0.3.x, so no python-bitcointx update is needed. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index a343ea9..310bd0d 100755 --- a/install.sh +++ b/install.sh @@ -324,9 +324,9 @@ libsecp256k1_build() libsecp256k1_install() { - secp256k1_version="0.4.1" + secp256k1_version="0.5.0" secp256k1_lib_tar="v$secp256k1_version.tar.gz" - secp256k1_lib_sha="31b1a03c7365dbce7aff4be9526243da966c58a8b88b6255556d51b3016492c5" + secp256k1_lib_sha="07934fde88c677abbc4d42c36ef7ef8d3850cd0c065e4f976f66f4f97502c95a" secp256k1_lib_url='https://github.com/bitcoin-core/secp256k1/archive/refs/tags' if ! dep_get "${secp256k1_lib_tar}" "${secp256k1_lib_sha}" "${secp256k1_lib_url}"; then return 1