From 9f0cd2f74f02ae024d54a78c38fb57844b126233 Mon Sep 17 00:00:00 2001 From: rating89us <45968869+rating89us@users.noreply.github.com> Date: Thu, 25 Feb 2021 19:09:09 +0100 Subject: [PATCH] ch07: fix numbered list; lock-time -> timelock --- ch07.asciidoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ch07.asciidoc b/ch07.asciidoc index 74b3d70f..41d299a4 100644 --- a/ch07.asciidoc +++ b/ch07.asciidoc @@ -317,10 +317,10 @@ Bob's transaction is evaluated as follows. If the +CHECKLOCKTIMEVERIFY+ paramete More precisely, +CHECKLOCKTIMEVERIFY+ fails and halts execution, marking the transaction invalid if (source: BIP-65): 1. the stack is empty; or -1. the top item on the stack is less than 0; or -1. the lock-time type (height versus timestamp) of the top stack item and the +nLocktime+ field are not the same; or -1. the top stack item is greater than the transaction's +nLocktime+ field; or -1. the +nSequence+ field of the input is 0xffffffff. +2. the top item on the stack is less than 0; or +3. the timelock type (height versus timestamp) of the top stack item and the +nLocktime+ field are not the same; or +4. the top stack item is greater than the transaction's +nLocktime+ field; or +5. the +nSequence+ field of the input is 0xffffffff. [NOTE] ====