You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// from switching announcement protocols after the connection is up.
3764
3764
if (msg_type == NetMsgType::SENDTXRCNCL) {
3765
3765
if (!m_txreconciliation) {
3766
-
LogPrint(BCLog::NET, "sendtxrcncl from peer=%d ignored, as our node does not have txreconciliation enabled\n", pfrom.GetId());
3766
+
LogPrintLevel(BCLog::NET, BCLog::Level::Debug, "sendtxrcncl from peer=%d ignored, as our node does not have txreconciliation enabled\n", pfrom.GetId());
3767
3767
return;
3768
3768
}
3769
3769
3770
3770
if (pfrom.fSuccessfullyConnected) {
3771
-
LogPrint(BCLog::NET, "sendtxrcncl received after verack from peer=%d; disconnecting\n", pfrom.GetId());
3771
+
LogPrintLevel(BCLog::NET, BCLog::Level::Debug, "sendtxrcncl received after verack from peer=%d; disconnecting\n", pfrom.GetId());
3772
3772
pfrom.fDisconnect = true;
3773
3773
return;
3774
3774
}
3775
3775
3776
3776
// Peer must not offer us reconciliations if we specified no tx relay support in VERSION.
3777
3777
if (RejectIncomingTxs(pfrom)) {
3778
-
LogPrint(BCLog::NET, "sendtxrcncl received from peer=%d to which we indicated no tx relay; disconnecting\n", pfrom.GetId());
3778
+
LogPrintLevel(BCLog::NET, BCLog::Level::Debug, "sendtxrcncl received from peer=%d to which we indicated no tx relay; disconnecting\n", pfrom.GetId());
LogPrint(BCLog::NET, "Ignore unexpected txreconciliation signal from peer=%d\n", pfrom.GetId());
3800
+
LogPrintLevel(BCLog::NET, BCLog::Level::Debug, "Ignore unexpected txreconciliation signal from peer=%d\n", pfrom.GetId());
3801
3801
break;
3802
3802
case ReconciliationRegisterResult::SUCCESS:
3803
3803
break;
3804
3804
case ReconciliationRegisterResult::ALREADY_REGISTERED:
3805
-
LogPrint(BCLog::NET, "txreconciliation protocol violation from peer=%d (sendtxrcncl received from already registered peer); disconnecting\n", pfrom.GetId());
3805
+
LogPrintLevel(BCLog::NET, BCLog::Level::Debug, "txreconciliation protocol violation from peer=%d (sendtxrcncl received from already registered peer); disconnecting\n", pfrom.GetId());
3806
3806
pfrom.fDisconnect = true;
3807
3807
return;
3808
3808
case ReconciliationRegisterResult::PROTOCOL_VIOLATION:
3809
-
LogPrint(BCLog::NET, "txreconciliation protocol violation from peer=%d; disconnecting\n", pfrom.GetId());
3809
+
LogPrintLevel(BCLog::NET, BCLog::Level::Debug, "txreconciliation protocol violation from peer=%d; disconnecting\n", pfrom.GetId());
0 commit comments