From a3b775be663a3ba5195a72763231c5cefe533cfb Mon Sep 17 00:00:00 2001 From: chris-belcher Date: Mon, 10 May 2021 10:14:52 +0100 Subject: [PATCH] Increase default fee by 4x This is in the best interests of takers because it will incentivize more and greater fidelity bond usage. Takers are still asked what they want their maximum fee to be, this commit only changes the randomly generated suggestion. --- jmclient/jmclient/cli_options.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jmclient/jmclient/cli_options.py b/jmclient/jmclient/cli_options.py index 9dc5ece..562e2f0 100644 --- a/jmclient/jmclient/cli_options.py +++ b/jmclient/jmclient/cli_options.py @@ -131,9 +131,9 @@ def get_order_choose_algorithm(option, opt_str, value, parser, value_kw=None): The following defaults are maintained as accessed via functions for flexibility. TODO This should be moved from this module.""" -MAX_DEFAULT_REL_FEE = 0.001 -MIN_MAX_DEFAULT_ABS_FEE = 1000 -MAX_MAX_DEFAULT_ABS_FEE = 10000 +MAX_DEFAULT_REL_FEE = 0.004 +MIN_MAX_DEFAULT_ABS_FEE = 4000 +MAX_MAX_DEFAULT_ABS_FEE = 40000 def get_default_max_relative_fee(): return MAX_DEFAULT_REL_FEE