mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Fix display formatting of STAmount
This commit is contained in:
committed by
Vinnie Falco
parent
7fed69fc13
commit
f4aec40fc1
@@ -1092,10 +1092,12 @@ std::string STAmount::getFullText () const
|
||||
|
||||
if (!mIsNative)
|
||||
{
|
||||
ret += "/";
|
||||
|
||||
if (!mIssuer)
|
||||
ret += "/0";
|
||||
ret += "0";
|
||||
else if (mIssuer == ACCOUNT_ONE)
|
||||
ret += "/1";
|
||||
ret += "1";
|
||||
else
|
||||
ret += RippleAddress::createHumanAccountID (mIssuer);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user