| 852 | } |
| 853 | |
| 854 | static struct command_result *log_error(struct command *cmd, |
| 855 | const char *buf, |
| 856 | const jsmntok_t *error, |
| 857 | void *arg UNNEEDED) |
| 858 | { |
| 859 | plugin_log(cmd->plugin, LOG_BROKEN, |
| 860 | "error calling rpc: %.*s", |
| 861 | json_tok_full_len(error), |
| 862 | json_tok_full(buf, error)); |
| 863 | |
| 864 | return notification_handled(cmd); |
| 865 | } |
| 866 | |
| 867 | static struct command_result * |
| 868 | listpeers_multi_done(struct command *cmd, |
nothing calls this directly
no test coverage detected