diff options
author | Jonas Nick <jonasd.nick@gmail.com> | 2019-05-10 13:57:12 +0000 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2020-01-19 14:47:33 -0800 |
commit | b2e6d11a6e1bbae2bccd17bd6abd0564d19ae549 (patch) | |
tree | 9ebc34a227ac602ee6c7c96dacdd1cd6d89651f1 /bip-taproot.mediawiki | |
parent | 953dd236650a02aa964049f138513b158463bea4 (diff) |
Clarify diagram
Diffstat (limited to 'bip-taproot.mediawiki')
-rw-r--r-- | bip-taproot.mediawiki | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bip-taproot.mediawiki b/bip-taproot.mediawiki index 0b6c04a..f100e6e 100644 --- a/bip-taproot.mediawiki +++ b/bip-taproot.mediawiki @@ -208,7 +208,7 @@ def taproot_output_script(internal_pubkey, script_tree): The function <code>taproot_output_script</code> returns a byte array with the scriptPubKey. It can be P2SH wrapped if desired (see BIP141). -[[File:bip-taproot/tree.png|frame|This diagram shows the hashing structure to obtain the tweak from an internal key ''P'' and a Merkle tree consisting of 3 script leaves.]] +[[File:bip-taproot/tree.png|frame|This diagram shows the hashing structure to obtain the tweak from an internal key ''P'' and a Merkle tree consisting of 5 script leaves. ''A'', ''B'', ''C'' and ''E'' are ''TapLeaf'' hashes similar to ''D'' and ''AB'' is a ''TapBranch'' hash. Note that when ''CDE'' is computed ''E'' is hashed first because ''E'' is less than ''CD''.]] '''Spending using the internal key''' A Taproot output can be spent with the private key corresponding to the <code>internal_pubkey</code>. To do so, a witness stack consisting of a single element, a bip-schnorr signature on the signature hash as defined above, with the private key tweaked by the same <code>t</code> in the above snippet. See the code below: |