Skip to content

Commit

Permalink
Add undocumented "-showorphans" GUI config option to help text
Browse files Browse the repository at this point in the history
This documents the "-showorphans" configuration by adding it to the
output of the executable's help message. The option instructs nodes
with a GUI to display stale coinstake transactions.
  • Loading branch information
cyrossignol committed Mar 18, 2021
1 parent fe7a502 commit 252700d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ std::string HelpMessage()
" -mininput=<amt> " + _("When creating transactions, ignore inputs with value less than this (default: 0.01)") + "\n";
if(fQtActive)
strUsage +=
" -server " + _("Accept command line and JSON-RPC commands") + "\n";
" -server " + _("Accept command line and JSON-RPC commands") + "\n" +
" -showorphans=true " + _("Include stale (orphaned) coinstake transactions in the transaction list (default: false)") + "\n";
#if !defined(WIN32)
if(!fQtActive)
strUsage +=
Expand Down

0 comments on commit 252700d

Please sign in to comment.