From 572a13bffdaecfd80ca769f7cf147e657ecd7614 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Mon, 10 Apr 2017 15:44:33 -0700 Subject: [PATCH] Update 4_5_Sending_Coins_with_Automated_Raw_Transactions.md --- 4_5_Sending_Coins_with_Automated_Raw_Transactions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4_5_Sending_Coins_with_Automated_Raw_Transactions.md b/4_5_Sending_Coins_with_Automated_Raw_Transactions.md index 6a4bea0..d88e2eb 100644 --- a/4_5_Sending_Coins_with_Automated_Raw_Transactions.md +++ b/4_5_Sending_Coins_with_Automated_Raw_Transactions.md @@ -25,7 +25,7 @@ txconfirmtarget=1 To use `fundrawtransaction` you first need to create a bare-bones raw transaction that lists _no_ inputs and _no_ change address. You'll just list your recipient and how much you want to send them: ``` -$ unfinishedtx=$(bitcoin-cli -named createrawtransaction transactions='''[]''' outputs='''{ "'$recipient'": 1.0 }''') +$ unfinishedtx=$(bitcoin-cli -named createrawtransaction inputs='''[]''' outputs='''{ "'$recipient'": 1.0 }''') ``` ## Fund Your Bare Bones Transaction