From b888ba021316bcacca63ff2e92302dd54655eeba Mon Sep 17 00:00:00 2001 From: Richard Holzeis Date: Wed, 26 Jul 2023 21:36:03 +0200 Subject: [PATCH] fixup! fix: Add delay before paying jit channel open fees print channel details for debugging --- mobile/native/src/channel_fee.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/mobile/native/src/channel_fee.rs b/mobile/native/src/channel_fee.rs index 985f53a84..f425b019a 100644 --- a/mobile/native/src/channel_fee.rs +++ b/mobile/native/src/channel_fee.rs @@ -155,6 +155,7 @@ impl ChannelFeePaymentSubscriber { .channel_manager .get_channel_details(&channel_id) .expect("Channel details to exist"); + tracing::debug!("------> Channel Details: {:?}", channel_details); if channel_details.is_usable { tracing::debug!("Channel {} is usable", hex::encode(channel_id)); break;