| 1516 | } |
| 1517 | |
| 1518 | struct jsonrpc_notification *jsonrpc_notification_start(const tal_t *ctx, const char *method) |
| 1519 | { |
| 1520 | struct jsonrpc_notification *n = jsonrpc_notification_start_noparams(ctx, method); |
| 1521 | json_object_start(n->stream, "params"); |
| 1522 | |
| 1523 | return n; |
| 1524 | } |
| 1525 | |
| 1526 | void jsonrpc_notification_end(struct jsonrpc_notification *n) |
| 1527 | { |
no test coverage detected