From 0339a6bb24bc971c760029827565371215057cda Mon Sep 17 00:00:00 2001 From: jhendrix Date: Fri, 16 May 2025 15:53:53 -0400 Subject: [PATCH] Clarify that it is a minimum fee per tx that uses OP_RETURN Blocking point for merging https://git.hush.is/hush/hush3/pulls/460. --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 1215e2f66..2175b7e26 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -604,7 +604,7 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += HelpMessageOpt("-ac_blocktime", _("Block time in seconds, default is 60")); strUsage += HelpMessageOpt("-ac_beam", _("BEAM integration")); strUsage += HelpMessageOpt("-ac_burn", _("Allow sending funds to the transparent burn address when -ac_private=1")); - strUsage += HelpMessageOpt("-ac_minopreturnfee", _("OP_RETURN fee per tx, regardless of tx size, default is 1 coin")); + strUsage += HelpMessageOpt("-ac_minopreturnfee", _("OP_RETURN minimum fee per tx, regardless of tx size, default is 1 coin")); strUsage += HelpMessageOpt("-ac_coda", _("CODA integration")); strUsage += HelpMessageOpt("-ac_decay", _("Percentage of block reward decrease at each halving")); strUsage += HelpMessageOpt("-ac_end", _("Block height at which block rewards will end"));