| 136 | } |
| 137 | |
| 138 | static LAST_ARG_NULL const char ** |
| 139 | gather_args(const tal_t *ctx, const char *cmd, ...) |
| 140 | { |
| 141 | va_list ap; |
| 142 | const char **ret; |
| 143 | |
| 144 | va_start(ap, cmd); |
| 145 | ret = gather_argsv(ctx, cmd, ap); |
| 146 | va_end(ap); |
| 147 | |
| 148 | return ret; |
| 149 | } |
| 150 | |
| 151 | static struct io_plan *read_more(struct io_conn *conn, struct bitcoin_cli *bcli) |
| 152 | { |
no test coverage detected