Browse Source

Remove unused CLI options in tumbler

master
Adam Gibson 4 years ago
parent
commit
38d00e5056
No known key found for this signature in database
GPG Key ID: 141001A1AF77F20B
  1. 21
      jmclient/jmclient/cli_options.py

21
jmclient/jmclient/cli_options.py

@ -348,13 +348,6 @@ def get_tumbler_parser():
dest='mintxcount', dest='mintxcount',
default=2, default=2,
help='The minimum transaction count per mixing level, default=2') help='The minimum transaction count per mixing level, default=2')
parser.add_option(
'--donateamount',
type='float',
dest='donateamount',
default=0,
help=
'percent of funds to donate to joinmarket development, or zero to opt out (default=0%)')
parser.add_option( parser.add_option(
'-l', '-l',
'--timelambda', '--timelambda',
@ -397,20 +390,6 @@ def get_tumbler_parser():
default=60, default=60,
help= help=
'amount of seconds to wait after failing to choose suitable orders before trying again, default 60') 'amount of seconds to wait after failing to choose suitable orders before trying again, default 60')
parser.add_option(
'--maxbroadcasts',
type='int',
dest='maxbroadcasts',
default=4,
help=
'maximum amount of times to broadcast a transaction before giving up and re-creating it, default 4')
parser.add_option(
'--maxcreatetx',
type='int',
dest='maxcreatetx',
default=9,
help=
'maximum amount of times to re-create a transaction before giving up, default 9')
# note that this is used slightly differently in tumbler from sendpayment, # note that this is used slightly differently in tumbler from sendpayment,
# hence duplicated: # hence duplicated:
parser.add_option('-A', parser.add_option('-A',

Loading…
Cancel
Save