| 122 | } |
| 123 | |
| 124 | static struct command_result *json_all_notifs(struct command *cmd, |
| 125 | const char *buf, |
| 126 | const jsmntok_t *params) |
| 127 | { |
| 128 | plugin_log(cmd->plugin, LOG_DBG, "all: %s: %.*s", |
| 129 | cmd->methodname, |
| 130 | json_tok_full_len(params), |
| 131 | json_tok_full(buf, params)); |
| 132 | return notification_handled(cmd); |
| 133 | } |
| 134 | |
| 135 | static struct command_result *testrpc_cb(struct command *cmd, |
| 136 | const char *method UNUSED, |
nothing calls this directly
no test coverage detected