From 2f13b37bca5880177ff52d869245e0d4f64a8f45 Mon Sep 17 00:00:00 2001 From: zerotobtc Date: Thu, 13 Jan 2022 07:17:39 +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..2fe1518 100644 --- a/18_4_Accessing_Bitcoind_with_Python.md +++ b/18_4_Accessing_Bitcoind_with_Python.md @@ -379,7 +379,7 @@ change_amt = float('%.8f'%((utxo_amt - recipient_amt) - miner_fee)) > :warning: **WARNING:** Obviously a real program would make more sophisticated choices about what UTXO to use, what to do with the funds, and what miner's fee to pay. -### 2. Create Raw Transacion +### 2. Create Raw Transaction Now you have all the information to send a transaction, but before you can send one, you have to create a transaction.