minor errata

This commit is contained in:
jodobear 2020-06-23 04:40:51 +02:00
parent edf008962e
commit 78cc698a8c

View File

@ -195,7 +195,7 @@ All the 3 transactions:
## Exploring an Address
How about getting a list of all the transactions of your address? Type the following and see what track your address:
How about getting a list of all the transactions of your address? Type the following and see all the transactions of your address:
```py
track_address = "<your address>"
@ -209,7 +209,7 @@ pprint(address_tx_list)
## Exploring a UTXO
To get details of a utxo, we first hed to get it's `hex` id, which we can then decode using `decoderawtransaction`.
To get details of a utxo, we first need to get it's `hex` id, which we can then decode using `decoderawtransaction`.
```py
print("Exploring UTXOs")
@ -235,7 +235,7 @@ print("---------------------------------------------------------------\n")
## Sending Transactions
Now that we have established comfort with our python interface with bitcoind, lets create a transaction. For the purposes of this course we will send test bitcoins to an address generated by us in our testnet wallet. Here's how we will do it:
Now that we have established comfort between our python and bitcoind interface, lets create and broadcast a transaction. For the purposes of this course we will send test bitcoins to an address generated by us in our testnet wallet. Here's how we will do it:
1. Create 2 addresses, one that will act as recipient and the other for change.
2. Select a UTXO and set transaction details.