cln-plugin: Populate the options when we get an init call

This commit is contained in:
Christian Decker
2022-01-21 18:09:16 +01:00
committed by Rusty Russell
parent 249fa8675a
commit fbcb4c33ad
3 changed files with 27 additions and 8 deletions

View File

@@ -62,9 +62,8 @@ pub(crate) enum Notification {
pub struct GetManifestCall {}
#[derive(Deserialize, Debug)]
pub struct InitCall {
pub options: Value,
pub configuration: HashMap<String, Value>,
pub(crate) struct InitCall {
pub(crate) options: HashMap<String, Value>,
}
#[derive(Debug)]