1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-23 08:38:10 +00:00

Made changes to ch03.asciidoc

This commit is contained in:
drusselloctal@gmail.com 2014-10-29 18:48:31 -07:00
parent 12ba54c38f
commit 64b007875b

View File

@ -1177,8 +1177,7 @@ The pycoin library supports both Python 2 (2.7.x) and Python 3 (after 3.3), and
==== ====
[source,bash] .To Install pycoin 0.42 under Python 3 in a virtual environment (venv):
.To Install pycoin 0.42 under Python 3 in an virtual environment (venv)
---- ----
$ python3 -m venv /tmp/pycoin $ python3 -m venv /tmp/pycoin
$ . /tmp/pycoin/bin/activate $ . /tmp/pycoin/bin/activate
@ -1213,7 +1212,7 @@ include::code/pycoin_example.py[]
---- ----
==== ====
For many examples using the command line utilities +ku+ and +tx+, see [XREF-appdx_pycoin]. For many examples using the command-line utilities +ku+ and +tx+, see [XREF-appdx_pycoin].
==== btcd ==== btcd
btcd is a full node bitcoin implementation written in Go. It currently properly downloads, validates, and serves the block chain using the exact rules (including bugs) for block acceptance as the reference implementation, bitcoind. It also properly relays newly mined blocks, maintains a transaction pool, and relays individual transactions that have not yet made it into a block. It ensures all individual transactions admitted to the pool follow the rules required into the block chain and also includes the vast majority of the more strict checks which filter transactions based on miner requirements ("standard" transactions). btcd is a full node bitcoin implementation written in Go. It currently properly downloads, validates, and serves the block chain using the exact rules (including bugs) for block acceptance as the reference implementation, bitcoind. It also properly relays newly mined blocks, maintains a transaction pool, and relays individual transactions that have not yet made it into a block. It ensures all individual transactions admitted to the pool follow the rules required into the block chain and also includes the vast majority of the more strict checks which filter transactions based on miner requirements ("standard" transactions).