Skip to content

Commit c1ae0fc

Browse files
committed
f - Fix indentation
1 parent f89a55e commit c1ae0fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1511,13 +1511,13 @@ where
15111511
/// // On the event processing thread
15121512
/// channel_manager.process_pending_events(&|event| match event {
15131513
/// Event::PaymentClaimable { payment_hash, purpose, .. } => match purpose {
1514-
/// PaymentPurpose::InvoicePayment { payment_preimage: Some(payment_preimage), .. } => {
1514+
/// PaymentPurpose::InvoicePayment { payment_preimage: Some(payment_preimage), .. } => {
15151515
/// println!("Claiming payment {}", payment_hash);
15161516
/// channel_manager.claim_funds(payment_preimage);
15171517
/// },
1518-
/// PaymentPurpose::InvoicePayment { payment_preimage: None, .. } => {
1518+
/// PaymentPurpose::InvoicePayment { payment_preimage: None, .. } => {
15191519
/// println!("Unknown payment hash: {}", payment_hash);
1520-
/// },
1520+
/// },
15211521
/// // ...
15221522
/// # _ => {},
15231523
/// },

0 commit comments

Comments
 (0)