Update 8_2_Creating_Multisig_Scripts.md

This commit is contained in:
Shannon Appelcline 2017-05-17 16:20:10 -07:00 committed by GitHub
parent 60f88a3463
commit 46271c412f

View File

@ -103,7 +103,7 @@ The technique accidentally follows the description in [8.1: Building a Bitcoin S
1. Deserialize `<serializedMultiSig>` 1. Deserialize `<serializedMultiSig>`
2. Validate `0 $signature1 1 $address1 $address2 2 OP_CHECKMULTISIG` or `0 $signature2 1 $address1 $address2 2 OP_CHECKMULTISIG` 2. Validate `0 $signature1 1 $address1 $address2 2 OP_CHECKMULTISIG` or `0 $signature2 1 $address1 $address2 2 OP_CHECKMULTISIG`
And now you know how the multisig transaction in §6.1 was actually created, and how it was actually validated for spending. And now you know how the multisig transaction in §6.1 was actually created, how it was actually validated for spending, and why that `redeemScript` was so important.
## Summary: Creating Multisig Scripts ## Summary: Creating Multisig Scripts