From d50fdfc7200ef9e558e5a22d71fee9296084df66 Mon Sep 17 00:00:00 2001 From: Patrick Stockwell Date: Sat, 14 Apr 2018 23:43:04 +1000 Subject: [PATCH] Change 'inputs' to 'outputs' Anything value unspent would have to come from an output. ...uses previously unspent `outputs`, and ... --- ch02.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch02.asciidoc b/ch02.asciidoc index 43e4bdff..25940f24 100644 --- a/ch02.asciidoc +++ b/ch02.asciidoc @@ -224,7 +224,7 @@ The transaction created by Alice's wallet application is 258 bytes long and cont ===== Bob's view -If Bob's bitcoin wallet application is directly connected to Alice's wallet application, Bob's wallet application might be the first node to receive the transaction. However, even if Alice's wallet sends the transaction through other nodes, it will reach Bob's wallet within a few seconds. Bob's wallet will immediately identify Alice's transaction as an incoming payment because it contains outputs redeemable by Bob's keys. Bob's wallet application can also independently verify that the transaction is well formed, uses previously unspent inputs, and contains sufficient transaction fees to be included in the next block. At this point Bob can assume, with little risk, that the transaction will shortly be included in a block and confirmed. +If Bob's bitcoin wallet application is directly connected to Alice's wallet application, Bob's wallet application might be the first node to receive the transaction. However, even if Alice's wallet sends the transaction through other nodes, it will reach Bob's wallet within a few seconds. Bob's wallet will immediately identify Alice's transaction as an incoming payment because it contains outputs redeemable by Bob's keys. Bob's wallet application can also independently verify that the transaction is well formed, uses previously unspent outputs, and contains sufficient transaction fees to be included in the next block. At this point Bob can assume, with little risk, that the transaction will shortly be included in a block and confirmed. [TIP] ====