UniValue: use correct setNumStr() input val, when setting number values
This commit is contained in:
parent
335e3a5c95
commit
42642c9695
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue