Browse Source

Merge JoinMarket-Org/joinmarket-clientserver#1701: Bump libsecp256k1 from v0.4.1 to v0.5.0

53d89ecc9a Bump libsecp256k1 from v0.4.1 to v0.5.0 (Kristaps Kaupe)

Pull request description:

  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.

Top commit has no ACKs.

Tree-SHA512: 6eba667915f391e93fc9541e4e0ff0d4847f872a57bfb2d4a13e56112f03a5009ed7e2d5703c844dd15202072c0ec4c5638396b84aef48222d08b161d9432de1
master
Kristaps Kaupe 2 years ago
parent
commit
d7a570789d
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 4
      install.sh

4
install.sh

@ -325,9 +325,9 @@ libsecp256k1_build()
libsecp256k1_install() libsecp256k1_install()
{ {
secp256k1_version="0.4.1" secp256k1_version="0.5.0"
secp256k1_lib_tar="v$secp256k1_version.tar.gz" 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' 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 if ! dep_get "${secp256k1_lib_tar}" "${secp256k1_lib_sha}" "${secp256k1_lib_url}"; then
return 1 return 1

Loading…
Cancel
Save