Skip to content

Commit

Permalink
false to true
Browse files Browse the repository at this point in the history
  • Loading branch information
Infernoman committed Apr 1, 2017
1 parent b08460a commit b026a69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/masternodeconfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ bool CMasternodeConfig::read(boost::filesystem::path path) {
return false;
}

if (!(!CService(ip).IsIPv4() && CService(ip).IsRoutable())) {
if (!(CService(ip).IsIPv4() && CService(ip).IsRoutable())) {
LogPrintf("Invalid Address detected in masternode.conf: %s (IPV4 ONLY) \n", line.c_str());
streamConfig.close();
return false;
Expand Down

0 comments on commit b026a69

Please sign in to comment.