Thornode:format_quote(): simplify call signature

This commit is contained in:
The MMGen Project 2025-05-19 09:23:55 +00:00
commit 5864bb83a3
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
2 changed files with 3 additions and 3 deletions

View file

@ -101,7 +101,7 @@ class Thornode:
self.tx.recv_asset.full_name,
self.in_amt.to_unit('satoshi'))
async def format_quote(self, trade_limit, usr_trade_limit, *, deduct_est_fee=False):
async def format_quote(self, trade_limit, *, deduct_est_fee=False):
from ....util import make_timestr, ymsg
from ....util2 import format_elapsed_hr
from ....color import blue, green, cyan, pink, orange, redbg, yelbg, grnbg
@ -119,7 +119,7 @@ class Thornode:
from . import ExpInt4
tl_int = ExpInt4(trade_limit.to_unit('satoshi'))
tl_uniamt = UniAmt(tl_int.trunc, from_unit='satoshi')
ratio = usr_trade_limit if type(usr_trade_limit) is float else float(tl_uniamt / out_amt)
ratio = float(tl_uniamt / out_amt)
direction = 'ABOVE' if ratio > 1 else 'below'
mcolor, lblcolor = (
(redbg, redbg) if (ratio < 0.93 or ratio > 0.999) else

View file

@ -203,7 +203,7 @@ class NewSwap(New):
self.swap_quote_refresh_time = time.time()
await self.set_gas(to_addr=c.router if self.is_token else None)
trade_limit = get_trade_limit()
msg(await c.format_quote(trade_limit, self.usr_trade_limit, deduct_est_fee=deduct_est_fee))
msg(await c.format_quote(trade_limit, deduct_est_fee=deduct_est_fee))
ch = get_char('Press ‘r’ to refresh quote, any other key to continue: ')
msg('')
if ch not in 'Rr':