| 519 | }; |
| 520 | |
| 521 | static const struct blinded_path *current_their_path(const struct establishing_paths *epaths) |
| 522 | { |
| 523 | if (epaths->sent->direct_dest) |
| 524 | return NULL; |
| 525 | assert(epaths->which_blinded_path < tal_count(epaths->sent->their_paths)); |
| 526 | return epaths->sent->their_paths[epaths->which_blinded_path]; |
| 527 | } |
| 528 | |
| 529 | static struct command_result *establish_path_done(struct command *cmd, |
| 530 | const struct pubkey *path, |
no outgoing calls
no test coverage detected