| 479 | } |
| 480 | |
| 481 | static void towire_save_channel_update(u8 **data, const struct local_update *lu) |
| 482 | { |
| 483 | towire_dstore_channel_update(data, |
| 484 | &lu->scidd, |
| 485 | lu->enabled, |
| 486 | lu->htlc_min, |
| 487 | lu->htlc_max, |
| 488 | lu->base_fee, |
| 489 | lu->proportional_fee, |
| 490 | lu->delay); |
| 491 | } |
| 492 | |
| 493 | static void save_channel_update(struct layer *layer, const struct local_update *lu) |
| 494 | { |
no test coverage detected