summaryrefslogtreecommitdiff
path: root/bip-0325.mediawiki
diff options
context:
space:
mode:
authorKarl-Johan Alm <karljohan-alm@garage.co.jp>2020-08-28 18:30:14 +0900
committerKarl-Johan Alm <karljohan-alm@garage.co.jp>2020-08-29 22:31:21 +0900
commitdfe1d77ca2cea43d5756a1514693f268f69cacae (patch)
tree256ae185607fb48b9b2101063155f942a8e1821a /bip-0325.mediawiki
parent36225e4b4d125eb97d8c7edcbc141542774b8207 (diff)
downloadbips-dfe1d77ca2cea43d5756a1514693f268f69cacae.tar.xz
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).