Browse Source

help notes: minor fixes

The MMGen Project 1 week ago
parent
commit
aa0a83d237
3 changed files with 7 additions and 2 deletions
  1. 1 1
      mmgen/help/addrimport.py
  2. 2 1
      mmgen/help/help_notes.py
  3. 4 0
      mmgen/help/txcreate.py

+ 1 - 1
mmgen/help/addrimport.py

@@ -50,7 +50,7 @@ This script uses that file to create an online view-only Monero wallet to
 match each offline signing wallet.  The set of view-only wallets currently
 match each offline signing wallet.  The set of view-only wallets currently
 configured via --xmrwallets comprises the user’s tracking wallet.
 configured via --xmrwallets comprises the user’s tracking wallet.
 
 
-If a view-only wallet for a given address already exists, it’s left untouched
+If a view-only wallet for a given index already exists, it’s left untouched
 and no action is performed.  To add view-only wallets to your tracking wallet,
 and no action is performed.  To add view-only wallets to your tracking wallet,
 just specify additional wallet indexes via --xmrwallets during the offline
 just specify additional wallet indexes via --xmrwallets during the offline
 setup process.
 setup process.

+ 2 - 1
mmgen/help/help_notes.py

@@ -112,8 +112,9 @@ class help_notes:
 		return "'{}' or '{}'".format(self.proto.dfl_mmtype, MMGenAddrType.mmtypes[self.proto.dfl_mmtype].name)
 		return "'{}' or '{}'".format(self.proto.dfl_mmtype, MMGenAddrType.mmtypes[self.proto.dfl_mmtype].name)
 
 
 	def address_types(self):
 	def address_types(self):
+		from ..cfg import gc
 		from ..addr import MMGenAddrType
 		from ..addr import MMGenAddrType
-		return """
+		return '' if gc.cmd_caps.use_coin_opt and self.proto.base_proto != 'Bitcoin' else """
 
 
 ADDRESS TYPES:
 ADDRESS TYPES:
 
 

+ 4 - 0
mmgen/help/txcreate.py

@@ -53,6 +53,10 @@ specified.
 
 
 	return f"""
 	return f"""
 
 
+The transaction’s output is listed on the command line, while its input
+is chosen via an interactive menu.
+{outputs_info}{fee_info}""" if proto.base_proto == 'Monero' else f"""
+
 The transaction’s outputs are listed on the command line, while its inputs
 The transaction’s outputs are listed on the command line, while its inputs
 are chosen from a list of the wallet’s unspent outputs via an interactive
 are chosen from a list of the wallet’s unspent outputs via an interactive
 menu.  Alternatively, inputs may be specified using the --inputs option.
 menu.  Alternatively, inputs may be specified using the --inputs option.