From efa9c265c4a0de4df488325914b77be50ccce6e3 Mon Sep 17 00:00:00 2001 From: Jay Graber Date: Thu, 23 Mar 2017 18:13:09 -0700 Subject: [PATCH] Add security warning to zcash-cli --help and --version message output --- src/bitcoin-cli.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index 0e692622b..868bf3c66 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -65,6 +65,7 @@ static bool AppInitRPC(int argc, char* argv[]) ParseParameters(argc, argv); if (argc<2 || mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help") || mapArgs.count("-version")) { std::string strUsage = _("Zcash RPC client version") + " " + FormatFullVersion() + "\n"; + strUsage += "\n" + _("In order to ensure you are adequately protecting your privacy when using Zcash, please see https://z.cash/support/security.html") + "\n"; if (!mapArgs.count("-version")) { strUsage += "\n" + _("Usage:") + "\n" + " zcash-cli [options] [params] " + _("Send command to Zcash") + "\n" +