From df2d109281c6d027531fae6c91a293ba5a81d1c7 Mon Sep 17 00:00:00 2001 From: Ignotus Peverell Date: Sat, 16 Jun 2018 21:06:09 +0100 Subject: [PATCH] Typo fix --- doc/contracts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/contracts.md b/doc/contracts.md index 67d25ca5..f600e515 100644 --- a/doc/contracts.md +++ b/doc/contracts.md @@ -34,8 +34,8 @@ We build the challenge `e = SHA256(M | k*G | x*G)`, and the scalar `s = k + e * x`. The full aggregate signature is then the pair `(s, k*G)`. The signature can be checked using the public key `x*G`, re-calculating `e` -using M and `k*G` from the 2nd part of the signature pair and by veryfying -that `s`, the first part of the signature pair, verifies: +using M and `k*G` from the 2nd part of the signature pair and by verifying +that `s`, the first part of the signature pair, satisfies: ``` s*G = k*G + e * x*G