From 1a8340459c7e862fdd5f608310ac6d372dabd3e6 Mon Sep 17 00:00:00 2001 From: zerotobtc Date: Wed, 12 Jan 2022 07:29:18 +0100 Subject: [PATCH] Fixed typo --- 18_4_Accessing_Bitcoind_with_Python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']