diff --git a/src/ripple_data/protocol/STAmount.cpp b/src/ripple_data/protocol/STAmount.cpp index 14f1540ab..82936bf67 100644 --- a/src/ripple_data/protocol/STAmount.cpp +++ b/src/ripple_data/protocol/STAmount.cpp @@ -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); }