help notes: minor fixes

This commit is contained in:
The MMGen Project 2026-05-05 12:07:32 +00:00
commit aa0a83d237
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
3 changed files with 7 additions and 2 deletions

View file

@ -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 users tracking wallet. configured via --xmrwallets comprises the users tracking wallet.
If a view-only wallet for a given address already exists, its left untouched If a view-only wallet for a given index already exists, its 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.

View file

@ -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:

View file

@ -53,6 +53,10 @@ specified.
return f""" return f"""
The transactions 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 transactions outputs are listed on the command line, while its inputs The transactions outputs are listed on the command line, while its inputs
are chosen from a list of the wallets unspent outputs via an interactive are chosen from a list of the wallets 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.