From af3126a231dc15ee0bf3c14e01a2163b7a7bb1bc Mon Sep 17 00:00:00 2001 From: "judymcconville@roadrunner.com" Date: Tue, 2 May 2017 10:23:01 -0700 Subject: [PATCH] Edited ch10.asciidoc with Atlas code editor --- ch10.asciidoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch10.asciidoc b/ch10.asciidoc index 82e27e3b..ab8e505f 100644 --- a/ch10.asciidoc +++ b/ch10.asciidoc @@ -135,7 +135,7 @@ Jing's node is listening for new blocks, propagated on the bitcoin network, as d === Aggregating Transactions into Blocks -After validating transactions, a bitcoin node will add them to the _memory pool_, or _transaction pool_, where transactions await until they can be included (mined) into a block. Jing's node collects, validates, and relays new transactions just like any other node. Unlike other nodes, however, Jing's node will then aggregate these transactions into a _candidate block_. +((("mining and consensus", "aggregating transactions into blocks", id="MACaggreg10")))((("transactions", "aggregating into blocks", id="Taggreg10")))((("blocks", "aggregating transactions into", id="Baggreg10")))After validating transactions, a bitcoin node will add them to the _memory pool_, or _transaction pool_, where transactions await until they can be included (mined) into a block. Jing's node collects, validates, and relays new transactions just like any other node. Unlike other nodes, however, Jing's node will then aggregate these transactions into a _candidate block_. Let's follow the blocks that were created during the time Alice bought a cup of coffee from Bob's Cafe (see <>). Alice's transaction was included in block 277,316. For the purpose of demonstrating the concepts in this chapter, let's assume that block was mined by Jing's mining system and follow Alice's transaction as it becomes part of this new block. @@ -349,7 +349,7 @@ include::code/satoshi-words.cpp[] ---- ==== -We compile the code with the GNU C++ compiler and run the resulting executable, as shown in <>. +We compile the code with the GNU C++ compiler and run the resulting executable, as shown in <>.((("", startref="MACaggreg10")))((("", startref="Baggreg10")))((("", startref="Taggreg10"))) [[satoshi_words_run]] .Compiling and running the satoshi-words example code