diff options
author | Gleb Naumenko <naumenko.gs@gmail.com> | 2022-10-20 16:38:50 +0300 |
---|---|---|
committer | Gleb Naumenko <naumenko.gs@gmail.com> | 2022-11-10 09:21:57 +0200 |
commit | a60f729e293dcd11ca077b7c1c72b06119437faa (patch) | |
tree | e53aee4c414f624d61006dd2ae121a839c813ea4 /src/node/txreconciliation.h | |
parent | 6772cbf69cf075ac8dff3507bf9151400ed255b7 (diff) |
p2p: Drop roles from sendtxrcncl
This feature was currently redundant (although could have provided
more flexibility in the future), and already been causing confusion.
Diffstat (limited to 'src/node/txreconciliation.h')
-rw-r--r-- | src/node/txreconciliation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node/txreconciliation.h b/src/node/txreconciliation.h index a4f0870914..caaf1777e9 100644 --- a/src/node/txreconciliation.h +++ b/src/node/txreconciliation.h @@ -72,8 +72,8 @@ public: * Step 0. Once the peer agreed to reconcile txs with us, generate the state required to track * ongoing reconciliations. Must be called only after pre-registering the peer and only once. */ - ReconciliationRegisterResult RegisterPeer(NodeId peer_id, bool is_peer_inbound, bool is_peer_recon_initiator, - bool is_peer_recon_responder, uint32_t peer_recon_version, uint64_t remote_salt); + ReconciliationRegisterResult RegisterPeer(NodeId peer_id, bool is_peer_inbound, + uint32_t peer_recon_version, uint64_t remote_salt); /** * Attempts to forget txreconciliation-related state of the peer (if we previously stored any). |