Hi Guys,
I need your advice. I'm creating my own transaction using createrawtransaction / signrawtransactionwithwallet / sendrawtransaction (to overcome the missing CPFP in bitcoin core) ...
Is there any danger to create an output that is unspendable? I'm getting a few payments and sometimes people send with too low a fee, my idea is to consolidate and then include the unconfirmed UTXO from those senders.
But of course, I'm a bit worried to create an unspendable output by mistake. The documentation doesn't mention it, so I assume this cannot happen?
I did a test-run and I'm getting this
"spendable": true,
"solvable": true
when checking on the receiving wallet. Is this enough guarantee that the output can be re-spent?
TIA