-
Notifications
You must be signed in to change notification settings - Fork 133
Add persistent closed channel history and list_closed_channels()
#882
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
Open
f3r10
wants to merge
1
commit into
lightningdevkit:main
Choose a base branch
from
f3r10:feat/persist_historical_channels
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,131 @@ | ||
| // This file is Copyright its original authors, visible in version control history. | ||
| // | ||
| // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
| // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or | ||
| // http://opensource.org/licenses/MIT>, at your option. You may not use this file except in | ||
| // accordance with one or both of these licenses. | ||
|
|
||
| use std::time::{Duration, SystemTime, UNIX_EPOCH}; | ||
|
|
||
| use bitcoin::secp256k1::PublicKey; | ||
| use bitcoin::OutPoint; | ||
| use lightning::events::ClosureReason; | ||
| use lightning::ln::msgs::DecodeError; | ||
| use lightning::ln::types::ChannelId; | ||
| use lightning::util::ser::{Readable, Writeable, Writer}; | ||
| use lightning::{_init_and_read_len_prefixed_tlv_fields, write_tlv_fields}; | ||
|
|
||
| use crate::data_store::{StorableObject, StorableObjectId, StorableObjectUpdate}; | ||
| use crate::hex_utils; | ||
| use crate::types::UserChannelId; | ||
|
|
||
| /// Details of a closed channel. | ||
| /// | ||
| /// Returned by [`Node::list_closed_channels`]. | ||
| /// | ||
| /// [`Node::list_closed_channels`]: crate::Node::list_closed_channels | ||
| #[derive(Clone, Debug, PartialEq, Eq)] | ||
| #[cfg_attr(feature = "uniffi", derive(uniffi::Record))] | ||
| pub struct ClosedChannelDetails { | ||
| /// The channel's ID at the time it was closed. | ||
| pub channel_id: ChannelId, | ||
| /// The local identifier of the channel. | ||
| pub user_channel_id: UserChannelId, | ||
| /// The node ID of the channel's counterparty. | ||
| pub counterparty_node_id: Option<PublicKey>, | ||
| /// The channel's funding transaction outpoint. | ||
| pub funding_txo: Option<OutPoint>, | ||
| /// The channel's capacity in satoshis. | ||
| pub channel_capacity_sats: Option<u64>, | ||
| /// Our local balance in millisatoshis at the time of channel closure. | ||
| pub last_local_balance_msat: Option<u64>, | ||
| /// Indicates whether we initiated the channel opening. | ||
| /// | ||
| /// `true` if the channel was opened by us (outbound), `false` if opened by the counterparty | ||
| /// (inbound). This will be `false` for channels opened prior to this field being tracked. | ||
| pub is_outbound: bool, | ||
| /// The reason for the channel closure. | ||
| pub closure_reason: Option<ClosureReason>, | ||
| /// The timestamp, in seconds since start of the UNIX epoch, when the channel was closed. | ||
| pub closed_at: u64, | ||
| } | ||
|
|
||
| impl Writeable for ClosedChannelDetails { | ||
| fn write<W: Writer>(&self, writer: &mut W) -> Result<(), lightning::io::Error> { | ||
| write_tlv_fields!(writer, { | ||
| (0, self.channel_id, required), | ||
| (2, self.user_channel_id, required), | ||
| (4, self.counterparty_node_id, option), | ||
| (6, self.funding_txo, option), | ||
| (8, self.channel_capacity_sats, option), | ||
| (10, self.last_local_balance_msat, option), | ||
| (12, self.is_outbound, required), | ||
| (14, self.closure_reason, upgradable_option), | ||
| (16, self.closed_at, required), | ||
| }); | ||
| Ok(()) | ||
| } | ||
| } | ||
|
|
||
| impl Readable for ClosedChannelDetails { | ||
| fn read<R: lightning::io::Read>(reader: &mut R) -> Result<Self, DecodeError> { | ||
| let unix_time_secs = SystemTime::now() | ||
| .duration_since(UNIX_EPOCH) | ||
| .unwrap_or(Duration::from_secs(0)) | ||
| .as_secs(); | ||
| _init_and_read_len_prefixed_tlv_fields!(reader, { | ||
| (0, channel_id, required), | ||
| (2, user_channel_id, required), | ||
| (4, counterparty_node_id, option), | ||
| (6, funding_txo, option), | ||
| (8, channel_capacity_sats, option), | ||
| (10, last_local_balance_msat, option), | ||
| (12, is_outbound, required), | ||
| (14, closure_reason, upgradable_option), | ||
| (16, closed_at, (default_value, unix_time_secs)), | ||
| }); | ||
| Ok(ClosedChannelDetails { | ||
| channel_id: channel_id.0.ok_or(DecodeError::InvalidValue)?, | ||
| user_channel_id: user_channel_id.0.ok_or(DecodeError::InvalidValue)?, | ||
| counterparty_node_id, | ||
| funding_txo, | ||
| channel_capacity_sats, | ||
| last_local_balance_msat, | ||
| is_outbound: is_outbound.0.ok_or(DecodeError::InvalidValue)?, | ||
| closure_reason, | ||
| closed_at: closed_at.0.ok_or(DecodeError::InvalidValue)?, | ||
| }) | ||
| } | ||
| } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we use |
||
|
|
||
| pub(crate) struct ClosedChannelDetailsUpdate(pub UserChannelId); | ||
|
|
||
| impl StorableObjectUpdate<ClosedChannelDetails> for ClosedChannelDetailsUpdate { | ||
| fn id(&self) -> UserChannelId { | ||
| self.0 | ||
| } | ||
| } | ||
|
|
||
| impl StorableObject for ClosedChannelDetails { | ||
| type Id = UserChannelId; | ||
| type Update = ClosedChannelDetailsUpdate; | ||
|
|
||
| fn id(&self) -> UserChannelId { | ||
| self.user_channel_id | ||
| } | ||
|
|
||
| fn update(&mut self, _update: Self::Update) -> bool { | ||
| // Closed channel records are immutable once written. | ||
| false | ||
| } | ||
|
|
||
| fn to_update(&self) -> Self::Update { | ||
| ClosedChannelDetailsUpdate(self.user_channel_id) | ||
| } | ||
| } | ||
|
|
||
| impl StorableObjectId for UserChannelId { | ||
| fn encode_to_hex_str(&self) -> String { | ||
| hex_utils::to_string(&self.0.to_be_bytes()) | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ClosedChannelDetailsisn't exposed in bindings