Browse Source

Merge JoinMarket-Org/joinmarket-clientserver#1034: Fix help description of yg's command line txfee options

3f5abeec14 Fix help description of yg's command line txfee options (Kristaps Kaupe)

Pull request description:

  Help output description of yield generator's `--txfee` command line option is currently wrong.

Top commit has no ACKs.

Tree-SHA512: ae1d1f9652df313fd0e9d4f6c16583a70f0666f54c03a2e1c03318a52b688c52787d737d75b9e084a0ac64af4a08f8380ca15644552b5f788fe7be235246a74c
master
Kristaps Kaupe 4 years ago
parent
commit
6a8a8074d1
No known key found for this signature in database
GPG Key ID: 33E472FE870C7E5D
  1. 4
      jmclient/jmclient/yieldgenerator.py

4
jmclient/jmclient/yieldgenerator.py

@ -286,10 +286,10 @@ def ygmain(ygclass, nickserv_password='', gaplimit=6):
help='type of order; can be either reloffer or absoffer')
parser.add_option('-t', '--txfee', action='store', type='int',
dest='txfee', default=None,
help='minimum miner fee in satoshis')
help='the average transaction fee contribution you\'re adding to coinjoin transactions')
parser.add_option('-f', '--txfee-factor', action='store', type='float',
dest='txfee_factor', default=None,
help='variance around the average fee, decimal fraction')
help='variance around the average transaction fee contribution, decimal fraction')
parser.add_option('-a', '--cjfee-a', action='store', type='string',
dest='cjfee_a', default=None,
help='requested coinjoin fee (absolute) in satoshis')

Loading…
Cancel
Save