Skip to content

Commit 4096d77

Browse files
committed
chore: drop LLMQ_DATA_MESSAGES_VERSION checks
1 parent 8c141f8 commit 4096d77

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

src/llmq/quorums.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -482,10 +482,6 @@ bool CQuorumManager::RequestQuorumData(CNode* pfrom, CConnman& connman, CQuorumC
482482
LogPrint(BCLog::LLMQ, "CQuorumManager::%s -- Invalid pfrom: nullptr\n", __func__);
483483
return false;
484484
}
485-
if (pfrom->nVersion < LLMQ_DATA_MESSAGES_VERSION) {
486-
LogPrint(BCLog::LLMQ, "CQuorumManager::%s -- Version must be %d or greater.\n", __func__, LLMQ_DATA_MESSAGES_VERSION);
487-
return false;
488-
}
489485
if (pfrom->GetVerifiedProRegTxHash().IsNull()) {
490486
LogPrint(BCLog::LLMQ, "CQuorumManager::%s -- pfrom is not a verified masternode\n", __func__);
491487
return false;

src/version.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ static const int MIN_PEER_PROTO_VERSION = 70221;
2222
//! minimum proto version of masternode to accept in DKGs
2323
static const int MIN_MASTERNODE_PROTO_VERSION = 70238;
2424

25-
//! introduction of QGETDATA/QDATA messages
26-
static const int LLMQ_DATA_MESSAGES_VERSION = 70219;
27-
2825
//! introduction of instant send deterministic lock (ISDLOCK)
2926
static const int ISDLOCK_PROTO_VERSION = 70220;
3027

0 commit comments

Comments
 (0)