sanitize division char

This commit is contained in:
Riku
2023-04-17 10:06:45 +02:00
parent f684942b8b
commit ba4397fcbe
2 changed files with 2 additions and 2 deletions

View File

@@ -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.)

View File

@@ -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.)