mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 22:45:27 +01:00
plugin: fix a comment when setting up io conns
This commit is contained in:
parent
87f0733965
commit
dd3d8d9504
1 changed files with 2 additions and 2 deletions
|
@ -1017,8 +1017,8 @@ void plugins_init(struct plugins *plugins, const char *dev_plugin_debug)
|
|||
p->buffer = tal_arr(p, char, 64);
|
||||
p->stop = false;
|
||||
|
||||
/* Create two connections, one read-only on top of p->stdin, and one
|
||||
* write-only on p->stdout */
|
||||
/* Create two connections, one read-only on top of p->stdout, and one
|
||||
* write-only on p->stdin */
|
||||
io_new_conn(p, stdout, plugin_stdout_conn_init, p);
|
||||
io_new_conn(p, stdin, plugin_stdin_conn_init, p);
|
||||
req = jsonrpc_request_start(p, "getmanifest", p->log,
|
||||
|
|
Loading…
Add table
Reference in a new issue