typo in masternodeaddr error message (#1242)

This commit is contained in:
TheLazieR Yip 2017-01-01 22:32:08 +07:00 committed by UdjinM6
parent 0d0446ccd4
commit f6ca563ab2

View File

@ -1800,7 +1800,7 @@ bool AppInit2(boost::thread_group& threadGroup, CScheduler& scheduler)
if(!GetArg("-masternodeaddr", "").empty()) {
// Hot masternode (either local or remote) should get its address in
// CActiveMasternode::ManageState() automatically and no longer relies on masternodeaddr.
return InitError(_("masternodeaddr option is deprecated. Please use masternode.conf to manage your remote masterndodes."));
return InitError(_("masternodeaddr option is deprecated. Please use masternode.conf to manage your remote masternodes."));
}
std::string strMasterNodePrivKey = GetArg("-masternodeprivkey", "");