From c3ce8432b5eef61e05e15661ce6ffb8a6122bcac Mon Sep 17 00:00:00 2001 From: Ian Culp <57159226+icculp@users.noreply.github.com> Date: Wed, 4 Aug 2021 20:27:26 -0500 Subject: [PATCH] minor typo --- 16_2_Programming_Bitcoind_with_C.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/16_2_Programming_Bitcoind_with_C.md b/16_2_Programming_Bitcoind_with_C.md index c1ee4ee..04d1e54 100644 --- a/16_2_Programming_Bitcoind_with_C.md +++ b/16_2_Programming_Bitcoind_with_C.md @@ -55,7 +55,7 @@ printf("Sending %4.8f BTC to %s\n",tx_amount,tx_recipient); ### Step 2: Set an Arbitrary Fee -This example just an arbitrary0.0005 BTC fee to ensure that the test transactions goes through quickly: +This example just an arbitrary 0.0005 BTC fee to ensure that the test transactions goes through quickly: ``` float tx_fee = 0.0005; float tx_total = tx_amount + tx_fee;