From f09871d739179dc1e3e0692fbe6ca47401ac3211 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Thu, 26 Jan 2023 14:26:25 +0100 Subject: [PATCH] cln-plugin: Remove unused `nonnumericids` field in `Builder` It wasn't used, and we always return `true` in the manifest, because we support them. --- plugins/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/plugins/src/lib.rs b/plugins/src/lib.rs index 9decd0791..c3d58bcd6 100644 --- a/plugins/src/lib.rs +++ b/plugins/src/lib.rs @@ -47,8 +47,6 @@ where rpcmethods: HashMap>, subscriptions: HashMap>, dynamic: bool, - #[allow(unused)] - nonnumericids: bool, } /// A plugin that has registered with the lightning daemon, and gotten @@ -118,7 +116,6 @@ where options: vec![], rpcmethods: HashMap::new(), dynamic: false, - nonnumericids: true, } }