From a7bf80f3a2db17ca6cbbaf45c49fbd6011633fa5 Mon Sep 17 00:00:00 2001 From: willcl-ark Date: Wed, 20 Mar 2024 23:05:01 +0000 Subject: [PATCH] doc: add bitcoin-tx man description --- src/bitcoin-tx.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp index 1aff914792..1561510db8 100644 --- a/src/bitcoin-tx.cpp +++ b/src/bitcoin-tx.cpp @@ -113,8 +113,11 @@ static int AppInitRawTx(int argc, char* argv[]) strUsage += FormatParagraph(LicenseInfo()); } else { strUsage += "\n" - "Usage: bitcoin-tx [options] [commands] Update hex-encoded bitcoin transaction\n" - "or: bitcoin-tx [options] -create [commands] Create hex-encoded bitcoin transaction\n" + "The bitcoin-tx tool is used for creating and modifying bitcoin transactions.\n\n" + "bitcoin-tx can be used with \" [commands]\" to update a hex-encoded bitcoin transaction, or with \"-create [commands]\" to create a hex-encoded bitcoin transaction.\n" + "\n" + "Usage: bitcoin-tx [options] [commands]\n" + "or: bitcoin-tx [options] -create [commands]\n" "\n"; strUsage += gArgs.GetHelpMessage(); }