Mawuli Obuntu

Results 13 comments of Mawuli Obuntu

I can work on this. Can you add further screenshots complimenting the ones above. They should show what you `expect` it to look like.

This is a signed transaction hex that already includes the inputs and outputs. All you have to do is broadcast it back to the bitcoin network. You shouldn't have to...

![image](https://user-images.githubusercontent.com/2033945/110252420-2aedf280-7f3a-11eb-954c-15b0b529d6f9.jpeg) BlueWallet broadcast ![image](https://user-images.githubusercontent.com/2033945/110252426-36411e00-7f3a-11eb-80ba-832ece13588d.jpeg) Coinb.in broadcast

Track down the function BlueWallet uses to broadcast transactions and reuse it. Looking for it, if you don't find it before me I'll post the it.

This is the function `broadcastTx(txHex)` https://github.com/BlueWallet/BlueWallet/blob/a14a5b159ff8d0dacf8164c87bf7d2af73209462/class/wallets/legacy-wallet.js#L329 You can just pass the txHex to it. Receiver and sender are already signed and encoded in the txHex. A simple `broadcastTx(txHex)` should be...

**as @limpbrains mentioned, most headache might cause a case when one of the inputs got invalidated, so you cant just rebroadcast same txhex.** If invalidated, notify user and destroy tx...