Skip to content

Commit d63202b

Browse files
authored
Should send "reject" when mixing queue is full (#2981)
1 parent 8d5781f commit d63202b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/privatesend/privatesend-server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ void CPrivateSendServer::ProcessMessage(CNode* pfrom, const std::string& strComm
3939
if (IsSessionReady()) {
4040
// too many users in this session already, reject new ones
4141
LogPrintf("DSACCEPT -- queue is already full!\n");
42-
PushStatus(pfrom, STATUS_ACCEPTED, ERR_QUEUE_FULL, connman);
42+
PushStatus(pfrom, STATUS_REJECTED, ERR_QUEUE_FULL, connman);
4343
return;
4444
}
4545

0 commit comments

Comments
 (0)