We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ChannelManager::force_close_channel attempts to close any given channel_id, even if the latter is unknown by the manager.
ChannelManager::force_close_channel
channel_id
This contrasts with ChannelManager::close_channel, where a errors::APIError::ChannelUnavailable will be raised.
ChannelManager::close_channel
errors::APIError::ChannelUnavailable
Having the same interface regarding unknown channels by both methods feels like the way to go, so I think force_close_channel should be updated.
force_close_channel
The text was updated successfully, but these errors were encountered:
I can tackle this issue if there's consensus on the update btw.
Sorry, something went wrong.
I'd say go for it.
Successfully merging a pull request may close this issue.
ChannelManager::force_close_channel
attempts to close any givenchannel_id
, even if the latter is unknown by the manager.This contrasts with
ChannelManager::close_channel
, where aerrors::APIError::ChannelUnavailable
will be raised.Having the same interface regarding unknown channels by both methods feels like the way to go, so I think
force_close_channel
should be updated.The text was updated successfully, but these errors were encountered: