fixed GetVoteCommand

This commit is contained in:
Evan Duffield 2015-07-06 12:53:22 -07:00
parent 391cc398a4
commit 2e8a1dcb94

View File

@ -403,8 +403,7 @@ public:
std::string strCommand = "dash-cli mnbudget vote " + strProposalName + " " + strURL + " " + boost::lexical_cast<std::string>(nPayments);
strCommand += " " + boost::lexical_cast<std::string>(nBlockStart) + " " + boost::lexical_cast<std::string>(nAmount) + " " + address2.ToString();
strCommand += " " + boost::lexical_cast<std::string>(nAmount) + " yes|no";
strCommand += " " + boost::lexical_cast<std::string>(nBlockStart) + " " + address2.ToString() + " " + boost::lexical_cast<std::string>(nAmount) + " yes|no";
return strCommand;
}