From f20620b0a5a2b12e1d837923229be2da7c4cf476 Mon Sep 17 00:00:00 2001 From: Alexander Block Date: Fri, 22 Mar 2019 15:21:20 +0100 Subject: [PATCH] Also handle MNAUTH on non-masternodes (#2797) No real reason to ignore this message. It might become useful in the future. --- src/evo/mnauth.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/evo/mnauth.cpp b/src/evo/mnauth.cpp index bb2eed888..fce62650c 100644 --- a/src/evo/mnauth.cpp +++ b/src/evo/mnauth.cpp @@ -46,10 +46,6 @@ void CMNAuth::PushMNAUTH(CNode* pnode, CConnman& connman) void CMNAuth::ProcessMessage(CNode* pnode, const std::string& strCommand, CDataStream& vRecv, CConnman& connman) { - if (!fMasternodeMode) { - return; - } - if (!masternodeSync.IsBlockchainSynced()) { // we can't really verify MNAUTH messages when we don't have the latest MN list return;