From c85b2179072485c2f0f480711e5483b11e8d10de Mon Sep 17 00:00:00 2001 From: nadams Date: Wed, 10 May 2017 13:49:07 -0700 Subject: [PATCH] Edited ch07.asciidoc with Atlas code editor --- ch07.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch07.asciidoc b/ch07.asciidoc index 44575325..49609fce 100644 --- a/ch07.asciidoc +++ b/ch07.asciidoc @@ -431,7 +431,7 @@ When reading Bitcoin Script, remember that the condition being evaluated comes _ ((("guard clauses")))Unlike an +IF+ clause, which offers alternative execution paths, the +VERIFY+ suffix acts as a _guard clause_, continuing only if a precondition is met. -For example, the following script requires Bob's signature and a preimage (secret) that produces a specific hash. Both conditions must be satisfied to unlock: +For example, the following script requires Bob's signature and a pre-image (secret) that produces a specific hash. Both conditions must be satisfied to unlock: .A redeem script with an +EQUALVERIFY+ guard clause. ----