UniValue: use correct setNumStr() input val, when setting number values

This commit is contained in:
Jeff Garzik 2014-08-19 13:41:25 -04:00
parent 335e3a5c95
commit 42642c9695
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ static bool validNumStr(const string& s)
bool UniValue::setNumStr(const string& val_)
{
if (!validNumStr(val))
if (!validNumStr(val_))
return false;
clear();