From 99b2fb5a41695ee4883868ca007d2e659d8e700f Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Wed, 5 Aug 2020 08:06:28 -1000 Subject: [PATCH] Update 15_2_Programming_Bitcoind_with_C.md --- 15_2_Programming_Bitcoind_with_C.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/15_2_Programming_Bitcoind_with_C.md b/15_2_Programming_Bitcoind_with_C.md index 086b670..feafe8d 100644 --- a/15_2_Programming_Bitcoind_with_C.md +++ b/15_2_Programming_Bitcoind_with_C.md @@ -146,7 +146,7 @@ If you didn't find any large-enough UTXOs, you'll have to report that sad fact t ``` if (!tx_id) { - printf("Very Sad: You don't have any UTXOs larger than %f",tx_total); + printf("Very Sad: You don't have any UTXOs larger than %f\n",tx_total); exit(-1); } ```