| 602 | } |
| 603 | |
| 604 | static void sign_timestamp_and_apply_update(struct daemon *daemon, |
| 605 | const struct chan *chan, |
| 606 | int direction, |
| 607 | u8 *update TAKES) |
| 608 | { |
| 609 | update = sign_and_timestamp_update(NULL, daemon, chan, direction, |
| 610 | update); |
| 611 | apply_update(daemon, chan, direction, take(update)); |
| 612 | } |
| 613 | |
| 614 | /* We don't want to thrash the gossip network, so we often defer sending an |
| 615 | * update. We track them here. */ |
no test coverage detected