From 21e3909ba610dff511b97608ea5fad75767f0fdb Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Wed, 29 Mar 2017 14:59:10 -0700 Subject: [PATCH] Update 4_2__Interlude_Using_JQ.md --- 4_2__Interlude_Using_JQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4_2__Interlude_Using_JQ.md b/4_2__Interlude_Using_JQ.md index dab5ea7..0429ff4 100644 --- a/4_2__Interlude_Using_JQ.md +++ b/4_2__Interlude_Using_JQ.md @@ -374,7 +374,7 @@ $ ./txfee-calc.sh $rawtxhex JQ code can be a little unwieldly, so you should consider adding some longer and more interesting invocations to your ~/.bash_profile ``` -lias btcunspent="bitcoin-cli listunspent | jq -r '.[] | { txid: .txid, vout: .vout, amount: .amount }'" +alias btcunspent="bitcoin-cli listunspent | jq -r '.[] | { txid: .txid, vout: .vout, amount: .amount }'" alias btctxfee="~/txfee-calc.sh" ```