This PR adds a new field in getpeerinfo
RPC to know whether a peer is registered for transaction reconciliation (we register it when receiving a SENDTXRCNCL
msg).
- The field
tx_reconciliation
is optional for in case you do not support tx reconciliation. - With this field, we can improve
p2p_sendtxrcncl
tests by checking whether a peer is registered for transaction reconciliation instead of simply rely on logs message. - d660df07d756ba5e06b74e4b51a7287620ae306b - Just remove unnecessary
disconnect_p2ps
(we’re calling it right before restarting the node) calls inp2p_sendtxrcncl
.