mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Merge 11f68cc810 into merged_master (Bitcoin PR bitcoin/bitcoin#31212)
This commit is contained in:
commit
5eec58e762
16 changed files with 210 additions and 75 deletions
|
|
@ -108,11 +108,11 @@ static int AppInitRawTx(int argc, char* argv[])
|
|||
|
||||
fCreateBlank = gArgs.GetBoolArg("-create", false);
|
||||
|
||||
if (argc < 2 || HelpRequested(gArgs) || gArgs.IsArgSet("-version")) {
|
||||
if (argc < 2 || HelpRequested(gArgs) || gArgs.GetBoolArg("-version", false)) {
|
||||
// First part of help message is specific to this utility
|
||||
std::string strUsage = CLIENT_NAME " elements-tx utility version " + FormatFullVersion() + "\n";
|
||||
|
||||
if (gArgs.IsArgSet("-version")) {
|
||||
if (gArgs.GetBoolArg("-version", false)) {
|
||||
strUsage += FormatParagraph(LicenseInfo());
|
||||
} else {
|
||||
strUsage += "\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue