From 9eabc7e907fd597ca66a7df9aa1f3929b8d5fb7a Mon Sep 17 00:00:00 2001 From: Ian Culp <57159226+icculp@users.noreply.github.com> Date: Wed, 6 Oct 2021 15:24:28 -0500 Subject: [PATCH] closing ` --- 17_5_Using_Scripts_in_Libwally.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17_5_Using_Scripts_in_Libwally.md b/17_5_Using_Scripts_in_Libwally.md index 399c9f7..dc350c0 100644 --- a/17_5_Using_Scripts_in_Libwally.md +++ b/17_5_Using_Scripts_in_Libwally.md @@ -82,7 +82,7 @@ One more command adds it to your transaction: Creating the input is much harder because you have to pile information into the creation routines, not all of which is intuitively accessible when you're using Libwally. So, rather than going that deep into the weeds, here's where we take our shortcut. We write our code so that it's passed the hex code for a transaction that's already been created, and then we just reuse the input. -The conversion from the hex code is done with `wally_tx_from_hex: +The conversion from the hex code is done with `wally_tx_from_hex`: ``` struct wally_tx *utxo; lw_response = wally_tx_from_hex(utxo_hex,0,&utxo);