From bf574090476454208b4f2d7c93623ad0ca5e15c6 Mon Sep 17 00:00:00 2001 From: Wojciech Langiewicz Date: Thu, 23 Oct 2014 23:43:03 +0200 Subject: [PATCH 1/2] fixed, 0 BTC is correct value to send --- ch08.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch08.asciidoc b/ch08.asciidoc index 7ce0330c..bf35e44b 100644 --- a/ch08.asciidoc +++ b/ch08.asciidoc @@ -95,7 +95,7 @@ Each node verifies every transaction against a long checklist of criteria: * The transaction's syntax and data structure must be correct * Neither lists of inputs or outputs are empty * The transaction size in bytes is less than MAX_BLOCK_SIZE -* Each output value, as well as the total, must be within the allowed range of values (less than 21m coins, more than 0) +* Each output value, as well as the total, must be within the allowed range of values (less than 21m coins, 0 or more coins) * None of the inputs have hash=0, N=-1 (coinbase transactions should not be relayed) * nLockTime is less than or equal to INT_MAX * The transaction size in bytes is greater than or equal to 100 From 74c1fe19bde50d023fa5953cae246691f44fcfe5 Mon Sep 17 00:00:00 2001 From: "Minh T. Nguyen" Date: Sun, 26 Oct 2014 17:06:32 -0400 Subject: [PATCH 2/2] Changing '0 or more coins' to 'not negative' to avoid confusino that a whole bitcoin must be sent --- ch08.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch08.asciidoc b/ch08.asciidoc index bf35e44b..20687e00 100644 --- a/ch08.asciidoc +++ b/ch08.asciidoc @@ -95,7 +95,7 @@ Each node verifies every transaction against a long checklist of criteria: * The transaction's syntax and data structure must be correct * Neither lists of inputs or outputs are empty * The transaction size in bytes is less than MAX_BLOCK_SIZE -* Each output value, as well as the total, must be within the allowed range of values (less than 21m coins, 0 or more coins) +* Each output value, as well as the total, must be within the allowed range of values (less than 21m coins, not negative) * None of the inputs have hash=0, N=-1 (coinbase transactions should not be relayed) * nLockTime is less than or equal to INT_MAX * The transaction size in bytes is greater than or equal to 100