From 1a0f7ddb0dd501d5eb69a9a836018b33f0f71c1c Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Sat, 10 Sep 2022 11:37:31 +0930 Subject: [PATCH] hsmtool: remove hsm_secret passwords on cmdline support in `dumponchaindescriptors`. Changelog-Removed: `hsmtool`: hsm_secret (ignored) on cmdline for dumponchaindescriptors (deprecated in v0.9.3) Signed-off-by: Rusty Russell --- tools/hsmtool.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tools/hsmtool.c b/tools/hsmtool.c index 226046365..4b392affc 100644 --- a/tools/hsmtool.c +++ b/tools/hsmtool.c @@ -719,11 +719,6 @@ int main(int argc, char *argv[]) if (argc > 3) net = argv[3]; - /* Previously, we accepted hsm_secret passwords on the command line. - * This shifted the location of the network parameter. - * TODO: remove this 3 releases after v0.9.3 */ - if (deprecated_apis && argc > 4) - net = argv[4]; if (net && streq(net, "testnet")) is_testnet = true;