summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-05-13 18:24:52 -0400
committerGitHub <noreply@github.com>2019-05-13 18:24:52 -0400
commitd8dea4ef095e5ce8a12f7956a9951cb5cddf8964 (patch)
tree55285ee43d93c367eb2b862cf12e7a2623822847
parent111e427d206caba009a37fc456e6c9f9e41bba99 (diff)
downloadbips-d8dea4ef095e5ce8a12f7956a9951cb5cddf8964.tar.xz
BIP 144: Old serialization format must be used on empty witness
-rw-r--r--bip-0144.mediawiki2
1 files changed, 1 insertions, 1 deletions
diff --git a/bip-0144.mediawiki b/bip-0144.mediawiki
index 75d8a1b..8ec2191 100644
--- a/bip-0144.mediawiki
+++ b/bip-0144.mediawiki
@@ -79,7 +79,7 @@ The serialization has the following structure:
Parsers supporting this BIP will be able to distinguish between the old serialization format (without the witness) and this one. The marker byte is set to zero so that this structure will never parse as a valid transaction in a parser that does not support this BIP. If parsing were to succeed, such a transaction would contain no inputs and a single output.
-If the witness is empty, the old serialization format should be used.
+If the witness is empty, the old serialization format must be used.
Currently, the only witness objects type supported are script witnesses which consist of a stack of byte arrays. It is encoded as a var_int item count followed by each item encoded as a var_int length followed by a string of bytes. Each txin has its own script witness. The number of script witnesses is not explicitly encoded as it is implied by txin_count. Empty script witnesses are encoded as a zero byte. The order of the script witnesses follows the same order as the associated txins.