1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-22 16:18:11 +00:00

Made changes to appdx-pycoin.asciidoc

This commit is contained in:
drusselloctal@gmail.com 2014-10-31 09:02:42 -07:00
parent c8f61afd3f
commit b12d2264d3

View File

@ -392,7 +392,7 @@ including unspents in hex dump since transaction not fully signed
----
====
The final line appears because to validate the transactions' signatures, you technically need to the source transactions. So let's add ```-a``` to augment the transactions with source information.
The final line appears because to validate the transactions' signatures, you technically need to the source transactions. So let's add +-a+ to augment the transactions with source information:
====
----
@ -416,7 +416,7 @@ all incoming transaction values validated
----
====
Now, let's look at unspent outputs for a specific address (UTXO). In block #1, we see a coinbase transaction to 12c6DSiU4Rq3P4ZxziKxzrL5LmMBrzjrJX. Let's use fetch_unspent to find all coins in this address.
Now, let's look at unspent outputs for a specific address (UTXO). In block #1, we see a coinbase transaction to +12c6DSiU4Rq3P4ZxziKxzrL5LmMBrzjrJX+. Let's use +fetch_unspent+ to find all coins in this address:
====
----