Remove "e0".

This commit is contained in:
JoelKatz
2013-01-29 16:19:07 -08:00
parent 14297a4ee1
commit f413aa3ef9

View File

@@ -643,7 +643,7 @@ std::string STAmount::getText() const
return std::string("-") + lexical_cast_i(mValue); return std::string("-") + lexical_cast_i(mValue);
else return lexical_cast_i(mValue); else return lexical_cast_i(mValue);
} }
if ((mOffset < -25) || (mOffset > -5)) if ((mOffset != 0) && ((mOffset < -25) || (mOffset > -5)))
{ {
if (mIsNegative) if (mIsNegative)
return std::string("-") + lexical_cast_i(mValue) + return std::string("-") + lexical_cast_i(mValue) +