1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2025-01-14 17:50:57 +00:00

0 BTC is correct value to send

This commit is contained in:
Wojciech Langiewicz 2014-10-31 15:40:34 +01:00
parent e60c414f43
commit 6ab46e0a7b

View File

@ -106,7 +106,7 @@ Each node verifies every transaction against a long checklist of criteria:
* For each input, look in the main branch and the transaction pool to find the referenced output transaction. If the output transaction is missing for any input, this will be an orphan transaction. Add to the orphan transactions pool, if a matching transaction is not already in the pool
* For each input, if the referenced output transaction is a coinbase output, it must have at least COINBASE_MATURITY (100) confirmations
* For each input, the referenced output must exist and cannot already be spent
* Using the referenced output transactions to get input values, check that each input value, as well as the sum, are in the allowed range of values (less than 21m coins, more than 0)
* Using the referenced output transactions to get input values, check that each input value, as well as the sum, are in the allowed range of values (less than 21m coins, not negative)
* Reject if the sum of input values < sum of output values
* Reject if transaction fee would be too low to get into an empty block
* The unlocking scripts for each input must validate against the corresponding output locking scripts