Skip to content

Commit

Permalink
lightningd: remove use_proxy_always parameter to plugin init.
Browse files Browse the repository at this point in the history
Changelog-Removed: Plugins: plugin init `use_proxy_always` (deprecated v0.10.2)
Signed-off-by: Rusty Russell <[email protected]>
  • Loading branch information
rustyrussell committed Sep 12, 2022
1 parent 733ce81 commit 29264e8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions lightningd/plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -1884,9 +1884,6 @@ plugin_populate_init_request(struct plugin *plugin, struct jsonrpc_request *req)
json_add_address(req->stream, "proxy", ld->proxyaddr);
json_add_bool(req->stream, "torv3-enabled", true);
json_add_bool(req->stream, "always_use_proxy", ld->always_use_proxy);
if (deprecated_apis)
json_add_bool(req->stream, "use_proxy_always",
ld->always_use_proxy);
}
json_object_start(req->stream, "feature_set");
for (enum feature_place fp = 0; fp < NUM_FEATURE_PLACE; fp++) {
Expand Down

0 comments on commit 29264e8

Please sign in to comment.