Browse Source

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.
master
chris-belcher 5 years ago
parent
commit
a3b775be66
No known key found for this signature in database
GPG Key ID: EF734EA677F31129
  1. 6
      jmclient/jmclient/cli_options.py

6
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

Loading…
Cancel
Save