fixed subsidy and max money calc when linear positive slope

This commit is contained in:
Michael Toutonghi
2018-04-10 14:58:54 -07:00
parent 18ec2a38d2
commit 3e312ace98
2 changed files with 24 additions and 13 deletions

View File

@@ -366,7 +366,7 @@ void ParseParameters(int argc, const char* const argv[])
void Split(const std::string& strVal, uint64_t *outVals, const uint64_t nDefault)
{
istringstream ss(strVal);
stringstream ss(strVal);
vector<uint64_t> vec;
uint64_t i, nLast, numVals = 0;