| 63 | chan_extra_can_send(uncertainty->chan_extra_map, &scidd); |
| 64 | } |
| 65 | void uncertainty_channel_cannot_send(struct uncertainty *uncertainty, |
| 66 | struct short_channel_id scid, |
| 67 | int direction) |
| 68 | { |
| 69 | struct short_channel_id_dir scidd = {scid, direction}; |
| 70 | // FIXME: check error |
| 71 | chan_extra_cannot_send(uncertainty->chan_extra_map, &scidd); |
| 72 | } |
| 73 | |
| 74 | int uncertainty_update(struct uncertainty *uncertainty, struct gossmap *gossmap) |
| 75 | { |
no test coverage detected