1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-22 16:18:11 +00:00

ch10: s/100/82/

Closes #790
This commit is contained in:
Will Binns 2021-03-10 10:21:58 +01:00
parent 553e1a51fb
commit f47d4379d4
No known key found for this signature in database
GPG Key ID: 302EBEAEEB74A404

View File

@ -111,7 +111,7 @@ Each node verifies every transaction against a long checklist of criteria:
* Each output value, as well as the total, must be within the allowed range of values (less than 21m coins, more than the _dust_ threshold).
* None of the inputs have hash=0, N=1 (coinbase transactions should not be relayed).
* +nLocktime+ is equal to +INT_MAX+, or +nLocktime+ and +nSequence+ values are satisfied according to +MedianTimePast+.
* The transaction size in bytes is greater than or equal to 100.
* The transaction size in bytes is greater than or equal to 82.
* The number of signature operations (SIGOPS) contained in the transaction is less than the signature operation limit.
* The unlocking script (+scriptSig+) can only push numbers on the stack, and the locking script (+scriptPubkey+) must match +IsStandard+ forms (this rejects "nonstandard" transactions).
* A matching transaction in the pool, or in a block in the main branch, must exist.