Skip to content

Commit

Permalink
Bump version to 0.16.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Hser2bio committed Jan 8, 2021
1 parent d7b5420 commit 8b02558
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 0)
define(_CLIENT_VERSION_MINOR, 16)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 3)
define(_CLIENT_VERSION_BUILD, 4)
define(_CLIENT_VERSION_IS_RELEASE, true)
define(_COPYRIGHT_YEAR, 2020)
define(_COPYRIGHT_YEAR, 2021)
define(_COPYRIGHT_HOLDERS,[The %s developers])
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[LQX Core]])
AC_INIT([LQX Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/coinlqx/lqx/issues],[lqxcore],[https://lqxcoin.com/])
Expand Down
10 changes: 8 additions & 2 deletions src/net_processing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2126,8 +2126,14 @@ bool static ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStr
pfrom->fDisconnect = true;
return true;
}

if (!vRecv.empty()) {

if (cleanSubVer == "/LQX Core:0.16.0.1/" || cleanSubVer == "/LQX Core:0.16.0.2/") {
//LogPrintf("%s - Disconnecting from obselete version (peer: %d)\n", __func__, pfrom->GetId());
pfrom->fDisconnect = true;
return true;
}

if (!vRecv.empty()) {
vRecv >> nStartingHeight;
}
if (!vRecv.empty())
Expand Down

0 comments on commit 8b02558

Please sign in to comment.