From b2663d53dcf63ded83de7c25ed1c8cd8c7fe1022 Mon Sep 17 00:00:00 2001 From: Justus Kandzi Date: Tue, 16 Jan 2018 18:55:13 +0100 Subject: [PATCH] add missing '$' --- 08_4_Scripting_a_Multisig.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08_4_Scripting_a_Multisig.md b/08_4_Scripting_a_Multisig.md index 4477d2e..bf8b3c6 100644 --- a/08_4_Scripting_a_Multisig.md +++ b/08_4_Scripting_a_Multisig.md @@ -43,7 +43,7 @@ If this looks familiar, that's because it's the multisig that you deserialized i The `scriptSig` for a standard multisig address must then submit the missing operands for `OP_CHECKMULTISIG`: a `0` followed by "m" signatures. For example: ``` -0 $signature1 signature2 +0 $signature1 $signature2 ``` ### Run a Raw Multisig Script