From 2cebdc58680396323407b2bb483e13439d8269fb Mon Sep 17 00:00:00 2001 From: jackiszhp <94544458@qq.com> Date: Mon, 2 Sep 2019 17:13:46 +0800 Subject: [PATCH] it was miscounted (#3013) --- doc/contracts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/contracts.md b/doc/contracts.md index 5bba27f551..302ccb44f3 100644 --- a/doc/contracts.md +++ b/doc/contracts.md @@ -113,7 +113,7 @@ Alice wants to pay Bob in grins. She starts the transaction building process: 1. Alice computes `e` just like Bob did and can check that `sr*G = kr*G + e*rr*G`. 1. Alice sends her side of the signature `ss = ks + e * rs` to Bob. -1. Bob validates `ss*G` just like Alice did for `sr*G` in step 5 and can +1. Bob validates `ss*G` just like Alice did for `sr*G` in step 6 and can produce the final signature `s = (ss + sr, ks*G + kr*G)` as well as the final transaction kernel including `s` and the public key `rr*G + rs*G`.