Skip to content

Commit

Permalink
clarify documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Otto committed Aug 14, 2022
1 parent b6ab6f5 commit ed8d36f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions rebalance.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ def get_argument_parser():
help="(default ~/.lnd) lnd directory",
)
parser.add_argument(
"--network",
"--network",
default='mainnet',
dest='network',
help='(default mainnet) lnd network (mainnet, testnet, simnet, ...)'
Expand Down Expand Up @@ -493,13 +493,14 @@ def get_argument_parser():
fee_group.add_argument(
"--fee-limit",
type=int,
help="If set, only consider rebalance transactions that cost up to the given number of satoshis."
help="If set, only consider rebalance transactions that cost up to the given number of satoshis. Note that "
"the first hop costs are considered, even though you don't have to pay them."
)
fee_group.add_argument(
"--fee-ppm-limit",
type=int,
help="If set, only consider rebalance transactions that cost up to the given number of satoshis per "
"1M satoshis sent."
"1M satoshis sent. Note that the first hop costs are considered, even though you don't have to pay them."
)
return parser

Expand Down

0 comments on commit ed8d36f

Please sign in to comment.