2
0
mirror of https://github.com/lnbook/lnbook synced 2024-11-01 03:20:53 +00:00

Merge pull request #544 from justinmoon/multisig-typo

Fix typo
This commit is contained in:
Andreas M. Antonopoulos 2020-12-08 09:10:30 -06:00 committed by GitHub
commit 909c8190c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,7 +119,7 @@ The Bitcoin scripting language provides a multisignature building block (primiti
The script for an K-of-N multisignature is:
----
K <PubKey1> <PubKey2> ... PubKeyN N CHECKMULTISIG
K <PubKey1> <PubKey2> ... <PubKeyN> N CHECKMULTISIG
----
where N is the total number of listed public keys (Public Key 1 through Public Key N) and K is the threshold of required signatures to spend the output.