Browse Source

parsing decimal

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
29ff0e0507
  1. 4
      libdevcore/CommonJS.h

4
libdevcore/CommonJS.h

@ -103,7 +103,9 @@ inline u256 jsToU256(std::string const& _s) { return jsToInt<32>(_s); }
inline int jsToInt(std::string const& _s)
{
return std::stoi(_s, nullptr, 16);
if (_s.size() > 2 && _s.substr(0, 2).compare("0x") == 0)
return std::stoi(_s, nullptr, 16);
return std::stoi(_s, nullptr, 10);
}
inline std::string jsToDecimal(std::string const& _s)

Loading…
Cancel
Save