forked from lightningdevkit/rust-lightning
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request lightningdevkit#1068 from TheBlueMatt/2021-09-ser-…
…cleanup Simplify Message Serialization and Parse TLV Suffix
- Loading branch information
Showing
30 changed files
with
224 additions
and
345 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 |
---|---|---|
@@ -1,31 +1,31 @@ | ||
mod utils; | ||
pub mod msg_accept_channel; | ||
pub mod msg_announcement_signatures; | ||
pub mod msg_channel_reestablish; | ||
pub mod msg_closing_signed; | ||
pub mod msg_commitment_signed; | ||
pub mod msg_decoded_onion_error_packet; | ||
pub mod msg_funding_created; | ||
pub mod msg_funding_locked; | ||
pub mod msg_funding_signed; | ||
pub mod msg_gossip_timestamp_filter; | ||
pub mod msg_init; | ||
pub mod msg_onion_hop_data; | ||
pub mod msg_open_channel; | ||
pub mod msg_ping; | ||
pub mod msg_pong; | ||
pub mod msg_query_channel_range; | ||
pub mod msg_reply_short_channel_ids_end; | ||
pub mod msg_revoke_and_ack; | ||
pub mod msg_shutdown; | ||
pub mod msg_update_add_htlc; | ||
pub mod msg_update_fail_htlc; | ||
pub mod msg_update_fail_malformed_htlc; | ||
pub mod msg_update_fee; | ||
pub mod msg_update_fulfill_htlc; | ||
pub mod msg_channel_reestablish; | ||
pub mod msg_decoded_onion_error_packet; | ||
pub mod msg_channel_announcement; | ||
pub mod msg_node_announcement; | ||
pub mod msg_query_short_channel_ids; | ||
pub mod msg_reply_short_channel_ids_end; | ||
pub mod msg_query_channel_range; | ||
pub mod msg_reply_channel_range; | ||
pub mod msg_gossip_timestamp_filter; | ||
pub mod msg_update_add_htlc; | ||
pub mod msg_error_message; | ||
pub mod msg_channel_update; | ||
pub mod msg_closing_signed; | ||
pub mod msg_init; | ||
pub mod msg_onion_hop_data; | ||
pub mod msg_ping; | ||
pub mod msg_pong; |
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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.