diff --git a/18_4_Accessing_Bitcoind_with_Python.md b/18_4_Accessing_Bitcoind_with_Python.md index 98fab13..1c39a9c 100644 --- a/18_4_Accessing_Bitcoind_with_Python.md +++ b/18_4_Accessing_Bitcoind_with_Python.md @@ -218,7 +218,7 @@ pprint(utxos) print("------------------------------------------\n") ``` -In order to manipulate an array like the one returned from `listtransactions` or `listunpsent`, you just grab the appropriate item from the appropriate element of the array: +In order to manipulate an array like the one returned from `listtransactions` or `listunspent`, you just grab the appropriate item from the appropriate element of the array: ``` ## Select a UTXO - first one selected here utxo_txid = utxos[0]['txid']