From 6034abff6f19e87ddf6241ec566c2f03f124b198 Mon Sep 17 00:00:00 2001 From: "myarbrough@oreilly.com" Date: Mon, 1 Dec 2014 07:36:23 -0800 Subject: [PATCH] Made changes to ch05.asciidoc --- ch05.asciidoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ch05.asciidoc b/ch05.asciidoc index 58b1945d..c85ebf90 100644 --- a/ch05.asciidoc +++ b/ch05.asciidoc @@ -325,10 +325,11 @@ As we saw in the step-by-step example in <>, when this script .Bitcoin's script validation doing simple math image::images/msbt_0502.png["TxScriptSimpleMathExample"] + [TIP] -===================================================================== +==== Transactions are valid if the top result on the stack is TRUE (noted as +{0x01}+), any other non-zero value or if the stack is empty after script execution. Transactions are invalid if the top value on the stack is FALSE (a zero-length empty value, noted as +{}+) or if script execution is halted explicitly by an operator, such as OP_VERIFY, OP_RETURN or a conditional terminator such as OP_ENDIF. See <> for details. -===================================================================== +==== ==== Turing Incompleteness