summaryrefslogtreecommitdiff
path: root/bip-0325.mediawiki
diff options
context:
space:
mode:
authorLuke Dashjr <luke_github1@dashjr.org>2020-09-01 04:32:23 +0000
committerGitHub <noreply@github.com>2020-09-01 04:32:23 +0000
commitbdb297a7c847c23b96ff1dbe7bc91586ec8b59c5 (patch)
tree256ae185607fb48b9b2101063155f942a8e1821a /bip-0325.mediawiki
parent36225e4b4d125eb97d8c7edcbc141542774b8207 (diff)
parentdfe1d77ca2cea43d5756a1514693f268f69cacae (diff)
downloadbips-bdb297a7c847c23b96ff1dbe7bc91586ec8b59c5.tar.xz
Merge pull request #983 from kallewoof/202008-signet-empty-commitment
bip-0325: clarify the OP_TRUE challenge special case
Diffstat (limited to 'bip-0325.mediawiki')
-rw-r--r--bip-0325.mediawiki4
1 files changed, 3 insertions, 1 deletions
diff --git a/bip-0325.mediawiki b/bip-0325.mediawiki
index ff1a145..752570d 100644
--- a/bip-0325.mediawiki
+++ b/bip-0325.mediawiki
@@ -65,10 +65,12 @@ The "to_sign" transaction is:
The scriptSig and/or scriptWitness for <code>vin[0]</code> are filled in from the Signet header push above.
-To simplify block generation (mining), the signature also does not commit to the the block nonce value, so that rolling the nonce to generate proof-of-work does not also require regenerating signatures. When grinding proof of work, the extended nonce cannot be used as it would invalidate the signature. Instead, simply resigning the same (or an updated) block will give a new search space.
+To simplify block generation (mining), the signature also does not commit to the block nonce value, so that rolling the nonce to generate proof-of-work does not also require regenerating signatures. When grinding proof of work, the extended nonce cannot be used as it would invalidate the signature. Instead, simply resigning the same (or an updated) block will give a new search space.
A block is considered fully validated only if the to_sign transaction is a valid spend of the to_spend transaction. It is recommended that this verification is done directly before or after the witness commitment verification, as the data required to do both is approximately the same.
+There is one other acceptable special case: if a block's challenge is e.g. `OP_TRUE` (`0x51`), where an empty solution would result in success, the block is also considered valid if the signet commitment is absent.
+
== Genesis Block and Message Start ==
The genesis block is the same for all signet networks, whereas the message start is defined as the first four bytes of the sha256d of the challenge script as a single data push (see below).