| 23 | } |
| 24 | |
| 25 | u8 *towire_errorfmt(const tal_t *ctx, |
| 26 | const struct channel_id *channel, |
| 27 | const char *fmt, ...) |
| 28 | { |
| 29 | va_list ap; |
| 30 | u8 *msg; |
| 31 | |
| 32 | va_start(ap, fmt); |
| 33 | msg = towire_errorfmtv(ctx, channel, fmt, ap); |
| 34 | va_end(ap); |
| 35 | |
| 36 | return msg; |
| 37 | } |
| 38 | |
| 39 | u8 *towire_warningfmtv(const tal_t *ctx, |
| 40 | const struct channel_id *channel, |
no test coverage detected