From aa0a83d237cb873191dbba80d81a588128d4632b Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Tue, 5 May 2026 12:07:32 +0000 Subject: [PATCH] help notes: minor fixes --- mmgen/help/addrimport.py | 2 +- mmgen/help/help_notes.py | 3 ++- mmgen/help/txcreate.py | 4 ++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/mmgen/help/addrimport.py b/mmgen/help/addrimport.py index ed710a28..db34fff6 100755 --- a/mmgen/help/addrimport.py +++ b/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 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, just specify additional wallet indexes via --xmrwallets during the offline setup process. diff --git a/mmgen/help/help_notes.py b/mmgen/help/help_notes.py index ae45b5dc..afda79e8 100755 --- a/mmgen/help/help_notes.py +++ b/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) def address_types(self): + from ..cfg import gc from ..addr import MMGenAddrType - return """ + return '' if gc.cmd_caps.use_coin_opt and self.proto.base_proto != 'Bitcoin' else """ ADDRESS TYPES: diff --git a/mmgen/help/txcreate.py b/mmgen/help/txcreate.py index 4ff0f7e0..8360b8dd 100755 --- a/mmgen/help/txcreate.py +++ b/mmgen/help/txcreate.py @@ -53,6 +53,10 @@ specified. 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 are chosen from a list of the wallet’s unspent outputs via an interactive menu. Alternatively, inputs may be specified using the --inputs option.