From 0a71c693e766822c2a58d434b76319e568f7c6c3 Mon Sep 17 00:00:00 2001 From: Semen Martynov Date: Mon, 11 Jun 2018 13:14:00 +0300 Subject: [PATCH] Remove explicit wallet lock in MasternodeList::StartAll() (#2106) Possible fix #2104 --- src/qt/masternodelist.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/qt/masternodelist.cpp b/src/qt/masternodelist.cpp index e5abc7a38f..9fc06c1b03 100644 --- a/src/qt/masternodelist.cpp +++ b/src/qt/masternodelist.cpp @@ -173,7 +173,6 @@ void MasternodeList::StartAll(std::string strCommand) strFailedHtml += "\nFailed to start " + mne.getAlias() + ". Error: " + strError; } } - pwalletMain->Lock(); std::string returnObj; returnObj = strprintf("Successfully started %d masternodes, failed to start %d, total %d", nCountSuccessful, nCountFailed, nCountFailed + nCountSuccessful);