Skip to content

Commit

Permalink
Raised MIN_PEER_PROTO_VERSION.
Browse files Browse the repository at this point in the history
  • Loading branch information
tecnovert committed Nov 9, 2017
1 parent 4596cf3 commit 993ad0c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/policy/policy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ bool IsStandard(const CScript& scriptPubKey, txnouttype& whichType, const bool w
if (!Solver(scriptPubKey, whichType, vSolutions))
return false;


if (whichType == TX_MULTISIG)
{
unsigned char m = vSolutions.front()[0];
Expand Down
2 changes: 1 addition & 1 deletion src/smsg/smessage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ std::string SecureMsgGetHelpString(bool showDebug)
strUsage += HelpMessageOpt("-smsgscanchain", _("Scan the block chain for public key addresses on startup. (default: false)"));
strUsage += HelpMessageOpt("-smsgscanincoming", _("Scan incoming blocks for public key addresses. (default: false)"));
strUsage += HelpMessageOpt("-smsgnotify=<cmd>", _("Execute command when a message is received. (%s in cmd is replaced by receiving address)"));
strUsage += HelpMessageOpt("-smsgsaddnewkeys", _("Scan for incoming transactions on new wallet keys. (default: false)"));
strUsage += HelpMessageOpt("-smsgsaddnewkeys", _("Scan for incoming messages on new wallet keys. (default: false)"));

return strUsage;
};
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static const int INIT_PROTO_VERSION = 209;
static const int GETHEADERS_VERSION = 31800;

//! disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = MIN_PARTICL_VERSION;
static const int MIN_PEER_PROTO_VERSION = 90005;

//! nTime field added to CAddress, starting with this version;
//! if possible, avoid requesting addresses nodes older than this
Expand Down

0 comments on commit 993ad0c

Please sign in to comment.