| 111 | PRINTF_FMT(3,4); |
| 112 | |
| 113 | static struct bolt11 *decode_fail(struct bolt11 *b11, char **fail, |
| 114 | const char *fmt, ...) |
| 115 | { |
| 116 | va_list ap; |
| 117 | |
| 118 | va_start(ap, fmt); |
| 119 | *fail = tal_vfmt(tal_parent(b11), fmt, ap); |
| 120 | va_end(ap); |
| 121 | return tal_free(b11); |
| 122 | } |
| 123 | |
| 124 | /* |
| 125 | * These handle specific fields in the payment request; returning the problem |
no test coverage detected