@@ -280,7 +280,6 @@ void CDKGSession::ReceiveMessage(const uint256& hash, const CDKGContribution& qc
280280 member->contributions .emplace (hash);
281281
282282 CInv inv (MSG_QUORUM_CONTRIB, hash);
283- invSet.emplace (inv);
284283 RelayInvToParticipants (inv);
285284
286285 quorumDKGDebugManager->UpdateLocalMemberStatus (params.type , member->idx , [&](CDKGDebugMemberStatus& status) {
@@ -547,7 +546,6 @@ void CDKGSession::ReceiveMessage(const uint256& hash, const CDKGComplaint& qc, b
547546 member->complaints .emplace (hash);
548547
549548 CInv inv (MSG_QUORUM_COMPLAINT, hash);
550- invSet.emplace (inv);
551549 RelayInvToParticipants (inv);
552550
553551 quorumDKGDebugManager->UpdateLocalMemberStatus (params.type , member->idx , [&](CDKGDebugMemberStatus& status) {
@@ -762,7 +760,6 @@ void CDKGSession::ReceiveMessage(const uint256& hash, const CDKGJustification& q
762760
763761 // we always relay, even if further verification fails
764762 CInv inv (MSG_QUORUM_JUSTIFICATION, hash);
765- invSet.emplace (inv);
766763 RelayInvToParticipants (inv);
767764
768765 quorumDKGDebugManager->UpdateLocalMemberStatus (params.type , member->idx , [&](CDKGDebugMemberStatus& status) {
@@ -1130,7 +1127,6 @@ void CDKGSession::ReceiveMessage(const uint256& hash, const CDKGPrematureCommitm
11301127 validCommitments.emplace (hash);
11311128
11321129 CInv inv (MSG_QUORUM_PREMATURE_COMMITMENT, hash);
1133- invSet.emplace (inv);
11341130 RelayInvToParticipants (inv);
11351131
11361132 quorumDKGDebugManager->UpdateLocalMemberStatus (params.type , member->idx , [&](CDKGDebugMemberStatus& status) {
0 commit comments