Browse Source

small changes

cl-refactor
yann300 10 years ago
parent
commit
53e901930d
  1. 4
      libethcore/CommonJS.cpp

4
libethcore/CommonJS.cpp

@ -117,9 +117,9 @@ std::string prettyU256(u256 _n, bool _abridged)
n = toHex(a.ref());
if (n.empty())
s << "0x0";
s << "0";
else
s << "0x" << n <<;
s << _n << "(0x" << n << ")";
}
else if ((raw = fromRaw((h256)_n, &inc)).size())
return "\"" + raw + "\"" + (inc ? " + " + std::to_string(inc) : "");

Loading…
Cancel
Save