Create and broadcast this tx now */
| 677 | |
| 678 | /* Create and broadcast this tx now */ |
| 679 | static void propose_immediate_resolution(struct tracked_output *out, |
| 680 | const u8 *send_message TAKES, |
| 681 | enum tx_type tx_type) |
| 682 | { |
| 683 | /* We add 1 to blockheight (meaning you can broadcast it now) to avoid |
| 684 | * having to check for < 0 in various places we print messages */ |
| 685 | propose_resolution_to_master(out, send_message, out->tx_blockheight+1, |
| 686 | tx_type); |
| 687 | } |
| 688 | |
| 689 | /* If UTXO reaches this block, ignore it (it's not for us, it's ok!) */ |
| 690 | static void propose_ignore(struct tracked_output *out, |
no test coverage detected