Skip to content

Commit 87b637c

Browse files
Fix accidental newline in OnionMessenger docs
1 parent 333be69 commit 87b637c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lightning/src/onion_message/messenger.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ use prelude::*;
6161
/// # let node_secret = SecretKey::from_slice(&hex::decode("0101010101010101010101010101010101010101010101010101010101010101").unwrap()[..]).unwrap();
6262
/// # let secp_ctx = Secp256k1::new();
6363
/// # let hop_node_id1 = PublicKey::from_secret_key(&secp_ctx, &node_secret);
64-
/// # let (hop_node_id2, hop_node_id3, hop_node_id4) = (hop_node_id1, hop_node_id1,
65-
/// hop_node_id1);
64+
/// # let (hop_node_id2, hop_node_id3, hop_node_id4) = (hop_node_id1, hop_node_id1, hop_node_id1);
6665
/// # let destination_node_id = hop_node_id1;
6766
/// # let your_custom_message_handler = IgnoringMessageHandler {};
6867
/// // Create the onion messenger. This must use the same `keys_manager` as is passed to your

0 commit comments

Comments
 (0)