Browse Source

Update various zcash references to Hush

branding
Jonathan "Duke" Leto 7 years ago
parent
commit
3eff8f0b91
  1. 1
      COPYING
  2. 14
      doc/dnsseed-policy.md
  3. 5
      src/bitcoin-tx.cpp
  4. 1
      src/bitcoind.cpp
  5. 2
      src/init.cpp

1
COPYING

@ -1,3 +1,4 @@
Copyright (c) 2017 The Hush developers
Copyright (c) 2016-2017 The Zdash developers
Copyright (c) 2016-2017 The Zcash developers
Copyright (c) 2009-2015 The Bitcoin Core developers

14
doc/dnsseed-policy.md

@ -1,12 +1,12 @@
Expectations for DNS Seed operators
====================================
Zcash attempts to minimize the level of trust in DNS seeds,
Hush attempts to minimize the level of trust in DNS seeds,
but DNS seeds still pose a small amount of risk for the network.
As such, DNS seeds must be run by entities which have some minimum
level of trust within the Zcash community.
level of trust within the Hush community.
Other implementations of Zcash software may also use the same
Other implementations of Hush software may also use the same
seeds and may be more exposed. In light of this exposure, this
document establishes some basic expectations for operating DNS seeds.
@ -16,7 +16,7 @@ and not sell or transfer control of the DNS seed. Any hosting services
contracted by the operator are equally expected to uphold these expectations.
1. The DNS seed results must consist exclusively of fairly selected and
functioning Zcash nodes from the public network to the best of the
functioning Hush nodes from the public network to the best of the
operator's understanding and capability.
2. For the avoidance of doubt, the results may be randomized but must not
@ -26,7 +26,7 @@ urgent technical necessity and disclosed.
3. The results may not be served with a DNS TTL of less than one minute.
4. Any logging of DNS queries should be only that which is necessary
for the operation of the service or urgent health of the Zcash
for the operation of the service or urgent health of the Hush
network and must not be retained longer than necessary nor disclosed
to any third party.
@ -42,8 +42,8 @@ details of their operating practices.
related to the DNS seed operation.
If these expectations cannot be satisfied the operator should discontinue
providing services and contact the active Zcash development team as well as
creating an issue in the [Zcash repository](https://github.com/zcash/zcash).
providing services and contact the active Hush development team as well as
creating an issue in the [Hush repository](https://github.com/MyHush/hush).
Behavior outside of these expectations may be reasonable in some
situations but should be discussed in public in advance.

5
src/bitcoin-tx.cpp

@ -1,4 +1,5 @@
// Copyright (c) 2009-2014 The Bitcoin Core developers
// Copyright (c) 2017 The Hush developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
@ -46,8 +47,8 @@ static bool AppInitRawTx(int argc, char* argv[])
// First part of help message is specific to this utility
std::string strUsage = _("Hush hush-tx utility version") + " " + FormatFullVersion() + "\n\n" +
_("Usage:") + "\n" +
" hush-tx [options] <hex-tx> [commands] " + _("Update hex-encoded zcash transaction") + "\n" +
" hush-tx [options] -create [commands] " + _("Create hex-encoded zcash transaction") + "\n" +
" hush-tx [options] <hex-tx> [commands] " + _("Update hex-encoded hush transaction") + "\n" +
" hush-tx [options] -create [commands] " + _("Create hex-encoded hush transaction") + "\n" +
"\n";
fprintf(stdout, "%s", strUsage.c_str());

1
src/bitcoind.cpp

@ -1,5 +1,6 @@
// Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2013 The Bitcoin Core developers
// Copyright (c) 2017 The Hush developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.

2
src/init.cpp

@ -337,7 +337,7 @@ std::string HelpMessage(HelpMessageMode mode)
strUsage += HelpMessageOpt("-blocknotify=<cmd>", _("Execute command when the best block changes (%s in cmd is replaced by block hash)"));
strUsage += HelpMessageOpt("-checkblocks=<n>", strprintf(_("How many blocks to check at startup (default: %u, 0 = all)"), 288));
strUsage += HelpMessageOpt("-checklevel=<n>", strprintf(_("How thorough the block verification of -checkblocks is (0-4, default: %u)"), 3));
strUsage += HelpMessageOpt("-conf=<file>", strprintf(_("Specify configuration file (default: %s)"), "zcash.conf"));
strUsage += HelpMessageOpt("-conf=<file>", strprintf(_("Specify configuration file (default: %s)"), "hush.conf"));
if (mode == HMM_BITCOIND)
{
#if !defined(WIN32)

Loading…
Cancel
Save