mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Allow larger amounts in normal notation.
This commit is contained in:
@@ -1127,7 +1127,7 @@ Amount.prototype.to_text = function (allow_nan) {
|
||||
{
|
||||
return "0";
|
||||
}
|
||||
else if (this._offset < -25 || this._offset > -5)
|
||||
else if (this._offset < -25 || this._offset > -4)
|
||||
{
|
||||
// Use e notation.
|
||||
// XXX Clamp output.
|
||||
|
||||
Reference in New Issue
Block a user