| 879 | } |
| 880 | |
| 881 | void layer_add_update_channel(struct layer *layer, |
| 882 | const struct short_channel_id_dir *scidd, |
| 883 | const bool *enabled, |
| 884 | const struct amount_msat *htlc_min, |
| 885 | const struct amount_msat *htlc_max, |
| 886 | const struct amount_msat *base_fee, |
| 887 | const u32 *proportional_fee, |
| 888 | const u16 *delay) |
| 889 | { |
| 890 | struct local_update *lu; |
| 891 | |
| 892 | lu = add_update_channel(layer, scidd, enabled, |
| 893 | htlc_min, htlc_max, |
| 894 | base_fee, proportional_fee, |
| 895 | delay); |
| 896 | save_channel_update(layer, lu); |
| 897 | } |
| 898 | |
| 899 | void layer_remove_channel_update(struct layer *layer, |
| 900 | const struct short_channel_id_dir *scidd) |
no test coverage detected