cln-plugin: Remove unused nonnumericids field in Builder

It wasn't used, and we always return `true` in the manifest, because
we support them.
This commit is contained in:
Christian Decker 2023-01-26 14:26:25 +01:00
parent 53b37ca1c1
commit f09871d739

View File

@ -47,8 +47,6 @@ where
rpcmethods: HashMap<String, RpcMethod<S>>,
subscriptions: HashMap<String, Subscription<S>>,
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,
}
}