| 1486 | } |
| 1487 | |
| 1488 | static void unwatch_txid(const struct bitcoin_txid *txid) |
| 1489 | { |
| 1490 | u8 *msg; |
| 1491 | |
| 1492 | msg = towire_onchaind_unwatch_tx(NULL, txid); |
| 1493 | wire_sync_write(REQ_FD, take(msg)); |
| 1494 | } |
| 1495 | |
| 1496 | static void handle_htlc_onchain_fulfill(struct tracked_output *out, |
| 1497 | const struct tx_parts *tx_parts, |
no test coverage detected