From d39995e424047a618f9cc36811e93907767a9035 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Thu, 1 Jun 2017 11:55:26 -0700 Subject: [PATCH] Update 8_4_Scripting_a_Multisig.md --- 8_4_Scripting_a_Multisig.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/8_4_Scripting_a_Multisig.md b/8_4_Scripting_a_Multisig.md index d1e14fc..b7b9b4c 100644 --- a/8_4_Scripting_a_Multisig.md +++ b/8_4_Scripting_a_Multisig.md @@ -60,27 +60,27 @@ Stack: [ 0 $signature1 $signature2 2 $address1 $address2 2 ] ``` Then, the `OP_CHECKMULTISIG` begins to run. First, the "2" is popped: ``` -Script: OP_CHECKMULTISIG +Running: OP_CHECKMULTISIG Stack: [ 0 $signature1 $signature2 2 $address1 $address2 ] ``` Then, the "2" tells `OP_CHECKMULTISIG `to pop two addresses: ``` -Script: OP_CHECKMULTISIG +Running: OP_CHECKMULTISIG Stack: [ 0 $signature1 $signature2 2 ] ``` Then, the next "2" is popped: ``` -Script: OP_CHECKMULTISIG +Running: OP_CHECKMULTISIG Stack: [ 0 $signature1 $signature2 ] ``` Then, the "2" tells `OP_CHECKMULTISIG` to pop two signatures: ``` -Script: OP_CHECKMULTISIG +Running: OP_CHECKMULTISIG Stack: [ 0 ] ``` Then, one more item is mistakenly popped: ``` -Script: OP_CHECKMULTISIG +Running: OP_CHECKMULTISIG Stack: [ ] ``` Then, `OP_CHECKMULTISIG` completes its operation by comparing the "m" signatures to the "n" addresses: