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

feat: notification channel_state_changed #4020

Commits on Sep 9, 2020

  1. feat: adds channel_state_changed notification

    This notification will be raised whenever a channel state changes.
    The payload includes the channel and peer identifiers and the
    old and the new state.
    
    Example payload:
    
    ```
    {
        "channel_state_changed": {
            "peer_id": "03bc9337c7a28bb784d67742ebedd30a93bacdf7e4ca16436ef3798000242b2251",
            "channel_id": "a2d0851832f0e30a0cf778a826d72f077ca86b69f72677e0267f23f63a0599b4",
            "short_channel_id" : "561820x1020x1",
            "old_state": "CHANNELD_NORMAL",
            "new_state": "AWAITING_UNILATERAL"
        }
    }
    ```
    
    Changelog-Added: Plugins: channel_state_changed notification
    m-schmoock committed Sep 9, 2020
    Configuration menu
    Copy the full SHA
    01c0e39 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    58dd90c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3767e29 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    287f606 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6fc4f2f View commit details
    Browse the repository at this point in the history