mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-21 04:05:49 +00:00
sanitize division char
This commit is contained in:
@@ -37,7 +37,7 @@ async function main() {
|
|||||||
// 25 TST * 10 XRP per TST * 15% financial exchange (FX) cost
|
// 25 TST * 10 XRP per TST * 15% financial exchange (FX) cost
|
||||||
value: xrpl.xrpToDrops(25*10*1.15)
|
value: xrpl.xrpToDrops(25*10*1.15)
|
||||||
}
|
}
|
||||||
// "Quality" is defined as TakerPays ÷ TakerGets. The lower the "quality"
|
// "Quality" is defined as TakerPays / TakerGets. The lower the "quality"
|
||||||
// number, the better the proposed exchange rate is for the taker.
|
// number, the better the proposed exchange rate is for the taker.
|
||||||
// The quality is rounded to a number of significant digits based on the
|
// The quality is rounded to a number of significant digits based on the
|
||||||
// issuer's TickSize value (or the lesser of the two for token-token trades.)
|
// issuer's TickSize value (or the lesser of the two for token-token trades.)
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ async def main() -> int:
|
|||||||
"value": xrp_to_drops(25 * 10 * 1.15),
|
"value": xrp_to_drops(25 * 10 * 1.15),
|
||||||
}
|
}
|
||||||
|
|
||||||
# "Quality" is defined as TakerPays ÷ TakerGets. The lower the "quality"
|
# "Quality" is defined as TakerPays / TakerGets. The lower the "quality"
|
||||||
# number, the better the proposed exchange rate is for the taker.
|
# number, the better the proposed exchange rate is for the taker.
|
||||||
# The quality is rounded to a number of significant digits based on the
|
# The quality is rounded to a number of significant digits based on the
|
||||||
# issuer's TickSize value (or the lesser of the two for token-token trades.)
|
# issuer's TickSize value (or the lesser of the two for token-token trades.)
|
||||||
|
|||||||
Reference in New Issue
Block a user