mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-18 13:17:51 +02:00
Don't ask for maxcjfee limits when manual order picking is selected
This commit is contained in:
parent
c33d43dcd3
commit
5026809a5a
1 changed files with 2 additions and 1 deletions
|
|
@ -115,7 +115,8 @@ def main():
|
|||
options.txfee))
|
||||
assert (options.txfee >= 0)
|
||||
|
||||
if not options.p2ep and options.makercount != 0:
|
||||
maxcjfee = (1, float('inf'))
|
||||
if not options.p2ep and not options.pickorders and options.makercount != 0:
|
||||
maxcjfee = get_max_cj_fee_values(jm_single().config, options)
|
||||
log.info("Using maximum coinjoin fee limits per maker of {:.4%}, {} "
|
||||
"sat".format(*maxcjfee))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue