| 986 | } |
| 987 | |
| 988 | const struct short_channel_id * |
| 989 | channel_scid_or_local_alias(const struct channel *chan) |
| 990 | { |
| 991 | assert(chan->scid != NULL || chan->alias[LOCAL] != NULL); |
| 992 | if (chan->scid != NULL) |
| 993 | return chan->scid; |
| 994 | else |
| 995 | return chan->alias[LOCAL]; |
| 996 | } |
no outgoing calls
no test coverage detected