From 80915f668f213c1a919b3d6add0918cb53e48b7b Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Wed, 5 Apr 2017 11:41:50 -0700 Subject: [PATCH] Update 4_5_Sending_Coins_with_Automated_Raw_Transactions.md --- ...ing_Coins_with_Automated_Raw_Transactions.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/4_5_Sending_Coins_with_Automated_Raw_Transactions.md b/4_5_Sending_Coins_with_Automated_Raw_Transactions.md index c8ea54a..692a926 100644 --- a/4_5_Sending_Coins_with_Automated_Raw_Transactions.md +++ b/4_5_Sending_Coins_with_Automated_Raw_Transactions.md @@ -129,6 +129,23 @@ At this point you could sign and send the transaction as usual. $ signedtx3=$(bitcoin-cli -named signrawtransaction hexstring=$rawtxhex3 | jq -r '.hex') $ bitcoin-cli -named sendrawtransaction hexstring=$signedtx3 ``` +In several minutes, you'll have your change back: +``` +$ bitcoin-cli listunspent +[ + + { + "txid": "37698ad6e7f62df07c2fbc549339aa680a7fa18328d7ad14ecb72b21c505cbc6", + "vout": 0, + "address": "mhBPM8hU2PHjDTUvwa3SC7pqv8ExkK6mH8", + "scriptPubKey": "76a914123cd8796558d195e52137ce3800e5f8120ee46f88ac", + "amount": 0.84927400, + "confirmations": 1, + "spendable": true, + "solvable": true + } +] +``` ## Summary: Sending Coins with Automated Raw Transactions