Common case of making a single path */
| 290 | |
| 291 | /* Common case of making a single path */ |
| 292 | static struct blinded_path **offer_onehop_path(const tal_t *ctx, |
| 293 | const struct offers_data *od, |
| 294 | const struct tlv_offer *offer, |
| 295 | const struct pubkey *neighbor) |
| 296 | { |
| 297 | return offer_onehop_paths(ctx, od, offer, neighbor, 1); |
| 298 | } |
| 299 | |
| 300 | static struct command_result *found_best_peer(struct command *cmd, |
| 301 | const struct chaninfo *best, |
no test coverage detected