mirror of
https://github.com/JoinMarket-Org/joinmarket-clientserver.git
synced 2026-08-13 12:33:40 +02:00
fix help msg error for changemixdepth
This commit is contained in:
parent
db62223ecd
commit
a65b82271e
2 changed files with 2 additions and 2 deletions
|
|
@ -32,7 +32,7 @@ def get_wallettool_parser():
|
|||
'(dumpprivkey) Export a single private key, specify an hd wallet path\n'
|
||||
'(signmessage) Sign a message with the private key from an address in \n'
|
||||
'the wallet. Use with -H and specify an HD wallet path for the address.\n'
|
||||
'(changemixdepth) Use with -m to change the *maximum* number of mixdepths\n'
|
||||
'(changemixdepth) Use with -M to change the *maximum* number of mixdepths\n'
|
||||
'in the wallet; you are advised to only increase, not decrease this \n'
|
||||
'number from the current value (initially 5).')
|
||||
parser = OptionParser(usage='usage: %prog [options] [wallet file] [method]',
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ def main():
|
|||
if wallet.max_mixdepth < max_mix_depth:
|
||||
print("Your wallet does not contain the required number of mixdepths: ",
|
||||
max_mix_depth)
|
||||
print("Increase using this command: `python wallet-tool.py -m ",
|
||||
print("Increase using this command: `python wallet-tool.py -M ",
|
||||
max_mix_depth + 1, " (yourwalletname) changemixdepth")
|
||||
print("Then start the tumbler again with the same settings.")
|
||||
sys.exit(0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue