Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plugin args enhancements #4278

Merged

Commits on Dec 14, 2020

  1. common/private_channel_announcement: don't include wire/peer_wiregen …

    …directly
    
    If we're experimental, we should be using peer_exp_wiregen.h; wire/peer_wire.h
    does this for us.
    
    Signed-off-by: Rusty Russell <[email protected]>
    rustyrussell committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    4b0d7dc View commit details
    Browse the repository at this point in the history
  2. plugins: remove deprecated string plugin options.

    This was fixed in 0.8.2.
    
    Signed-off-by: Rusty Russell <[email protected]>
    Changelog-Removed: plugins: options to init are no longer given as strings if they are bool or int types (deprecated in 0.8.2).
    rustyrussell committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    d4b171e View commit details
    Browse the repository at this point in the history
  3. plugins: support concatenation of multiple args.

    "multi" means that specifying a parameter twice will append, not override.
    Multi args are always given as a JSON array, even if only one.
    
    Signed-off-by: Rusty Russell <[email protected]>
    Changelog-Added: Plugins: new "multi" field allows an option to be specified multiple times.
    rustyrussell committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    0239c3b View commit details
    Browse the repository at this point in the history
  4. Plugin: support extra args to "start".

    Signed-off-by: Rusty Russell <[email protected]>
    Changelog-Added: Plugins: `start` command can now take plugin-specific parameters.
    rustyrussell committed Dec 14, 2020
    Configuration menu
    Copy the full SHA
    1363333 View commit details
    Browse the repository at this point in the history