From 5026809a5ac070384835025c02ab4b605eb2d723 Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Mon, 11 Feb 2019 01:02:05 +0200 Subject: [PATCH] Don't ask for maxcjfee limits when manual order picking is selected --- scripts/sendpayment.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/sendpayment.py b/scripts/sendpayment.py index cef413e..52c880b 100644 --- a/scripts/sendpayment.py +++ b/scripts/sendpayment.py @@ -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))