| 610 | } |
| 611 | |
| 612 | static void ignore_output(struct tracked_output *out) |
| 613 | { |
| 614 | status_debug("Ignoring output %s: %s/%s", |
| 615 | fmt_bitcoin_outpoint(tmpctx, &out->outpoint), |
| 616 | tx_type_name(out->tx_type), |
| 617 | output_type_name(out->output_type)); |
| 618 | |
| 619 | out->resolved = tal(out, struct resolution); |
| 620 | out->resolved->txid = out->outpoint.txid; |
| 621 | out->resolved->depth = 0; |
| 622 | out->resolved->tx_type = SELF; |
| 623 | } |
| 624 | |
| 625 | static void handle_spend_created(struct tracked_output *out, const u8 *msg) |
| 626 | { |
no test coverage detected