1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-22 16:18:11 +00:00

ch04: Drop incorrect reference to function

This commit is contained in:
Will Binns 2020-04-30 20:36:14 -06:00
parent 465eb1e986
commit 3234b12cd3
No known key found for this signature in database
GPG Key ID: 302EBEAEEB74A404

View File

@ -236,7 +236,7 @@ To visualize multiplication of a point with an integer, we will use the simpler
[TIP]
====
((("secp256k1 optimized C library")))Bitcoin uses the https://github.com/bitcoin-core/secp256k1[secp256k1 optimized C library] to do the elliptic curve math. For example, to derive the public key, the function +EC_POINT_mul()+ is used.((("", startref="KAover04")))
((("secp256k1 optimized C library")))Bitcoin uses the https://github.com/bitcoin-core/secp256k1[secp256k1 optimized C library] to do the elliptic curve math.((("", startref="KAover04")))
====
[[ecc_illustrated]]