From 070162d29445ebae24e504d818f82e098f653d1d Mon Sep 17 00:00:00 2001 From: mruddy Date: Thu, 22 Oct 2015 09:31:02 -0400 Subject: [PATCH] correct ecc equation --- _includes/devdoc/guide_wallets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/devdoc/guide_wallets.md b/_includes/devdoc/guide_wallets.md index 6518fd1a..2599c844 100644 --- a/_includes/devdoc/guide_wallets.md +++ b/_includes/devdoc/guide_wallets.md @@ -343,7 +343,7 @@ Curve (EC) defined in secp256k1. In their traditional uncompressed form, public keys contain an identification byte, a 32-byte X coordinate, and a 32-byte Y coordinate. The extremely simplified illustration below shows such a point on the elliptic curve used by Bitcoin, -x2 = y3 + 7, over a field of +y2 = x3 + 7, over a field of contiguous numbers. ![Point On ECDSA Curve](/img/dev/en-ecdsa-compressed-public-key.svg)