| 468 | } |
| 469 | |
| 470 | static char *opt_set_offline(struct lightningd *ld) |
| 471 | { |
| 472 | ld->reconnect = false; |
| 473 | ld->listen = false; |
| 474 | log_info(ld->log, "Started in offline mode!"); |
| 475 | ld->autoconnect_seeker_peers=0; |
| 476 | return NULL; |
| 477 | } |
| 478 | |
| 479 | static char *opt_add_proxy_addr(const char *arg, struct lightningd *ld) |
| 480 | { |
no test coverage detected