From 7e42a506312315f70f074ce2617a56ca21f5e2b8 Mon Sep 17 00:00:00 2001 From: Gleb Naumenko Date: Tue, 5 Dec 2023 10:20:48 +0200 Subject: [PATCH] refactor: remove legacy comments These comments became irrelevant in one of the previous code changes. They simply don't make sense anymore. --- src/node/txreconciliation.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/node/txreconciliation.cpp b/src/node/txreconciliation.cpp index e6e19c5756b..dd088fee7de 100644 --- a/src/node/txreconciliation.cpp +++ b/src/node/txreconciliation.cpp @@ -36,9 +36,6 @@ class TxReconciliationState { public: /** - * TODO: This field is public to ignore -Wunused-private-field. Make private once used in - * the following commits. - * * Reconciliation protocol assumes using one role consistently: either a reconciliation * initiator (requesting sketches), or responder (sending sketches). This defines our role, * based on the direction of the p2p connection. @@ -47,9 +44,6 @@ public: bool m_we_initiate; /** - * TODO: These fields are public to ignore -Wunused-private-field. Make private once used in - * the following commits. - * * These values are used to salt short IDs, which is necessary for transaction reconciliations. */ uint64_t m_k0, m_k1;