From 24fd1116efc40155202ca24aa64d034f40641428 Mon Sep 17 00:00:00 2001 From: Afshin Arani Date: Wed, 13 Jul 2022 15:49:32 +0430 Subject: [PATCH] Backend(LN): remove debug-level CWLs --- src/GWallet.Backend/UtxoCoin/Lightning/InvoiceManagement.fs | 1 - src/GWallet.Backend/UtxoCoin/Lightning/Node.fs | 2 -- 2 files changed, 3 deletions(-) diff --git a/src/GWallet.Backend/UtxoCoin/Lightning/InvoiceManagement.fs b/src/GWallet.Backend/UtxoCoin/Lightning/InvoiceManagement.fs index 02549b6f..5c9b2636 100644 --- a/src/GWallet.Backend/UtxoCoin/Lightning/InvoiceManagement.fs +++ b/src/GWallet.Backend/UtxoCoin/Lightning/InvoiceManagement.fs @@ -91,7 +91,6 @@ type internal InvoiceDataStore(account: NormalUtxoAccount) = try let fileName = self.InvoiceDataFilePath let json = File.ReadAllText fileName - Console.WriteLine (json) Marshalling.DeserializeCustom ( json, AccountInvoiceData.LightningSerializerSettings diff --git a/src/GWallet.Backend/UtxoCoin/Lightning/Node.fs b/src/GWallet.Backend/UtxoCoin/Lightning/Node.fs index 7014a447..297a4c75 100644 --- a/src/GWallet.Backend/UtxoCoin/Lightning/Node.fs +++ b/src/GWallet.Backend/UtxoCoin/Lightning/Node.fs @@ -782,7 +782,6 @@ type Node = let claimHtlcOutput (transaction) = async { - Console.WriteLine ("Claiming htlc output from the commitment tx") let txb, shouldAddFee = ClosingHelpers.ClaimHtlcOutput transaction @@ -849,7 +848,6 @@ type Node = | None -> return failwith "NIE" | Some spendingTx -> - Console.WriteLine ("Claiming htlc output from the 2nd stage tx") let txbOpt = ClosingHelpers.ClaimDelayedHtlcTx htlcTransactions.ClosingTx spendingTx serializedChannel.SavedChannelState serializedChannel.RemoteNextCommitInfo channelPrivKeys match txbOpt with