| 2136 | } |
| 2137 | |
| 2138 | void remember_chan_dying(struct routing_state *rstate, |
| 2139 | const struct short_channel_id *scid, |
| 2140 | u32 deadline_blockheight, |
| 2141 | u64 index) |
| 2142 | { |
| 2143 | struct dying_channel d; |
| 2144 | d.scid = *scid; |
| 2145 | d.deadline_blockheight = deadline_blockheight; |
| 2146 | d.marker.index = index; |
| 2147 | tal_arr_expand(&rstate->dying_channels, d); |
| 2148 | } |
| 2149 | |
| 2150 | void routing_channel_spent(struct routing_state *rstate, |
| 2151 | u32 current_blockheight, |
no outgoing calls
no test coverage detected