Update 15_2_Programming_Bitcoind_with_C.md

This commit is contained in:
Shannon Appelcline 2020-08-05 08:06:28 -10:00 committed by GitHub
parent 147dfb75c0
commit 99b2fb5a41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}
```