Skip to content

Commit

Permalink
Merge #1034: Fix help description of yg's command line txfee options
Browse files Browse the repository at this point in the history
3f5abee 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
  • Loading branch information
kristapsk committed Oct 7, 2021
2 parents cb347b8 + 3f5abee commit 6a8a807
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jmclient/jmclient/yieldgenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 6a8a807

Please sign in to comment.