Merge pull request #2 from ulloa/feature/btcprivateRebrand

Rebranded from Zclassic to Bitcoin Private
This commit is contained in:
Rhett Creighton 2017-12-25 06:04:58 -06:00 committed by GitHub
commit 9e946ced70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 34 additions and 34 deletions

View File

@ -1,10 +1,10 @@
Zclassic v1.0.10-1
Bitcoin Private v1.0.10-1
NOTICE, the default ports have changed! The p2p port is now 8033 and rpcport is 8023
What is Zclassic?
What is Bitcoin Private?
----------------
Zclassic is financial freedom.
Bitcoin Private is financial freedom.
Install
-----------------
@ -69,14 +69,14 @@ Install
About
--------------
[Zclassic](http://zclassic.org/), like [Zcash](https://z.cash/), is an implementation of the "Zerocash" protocol.
[Bitcoin Private](http://zclassic.org/), like [Zcash](https://z.cash/), is an implementation of the "Zerocash" protocol.
Based on Bitcoin's code, it intends to offer a far higher standard of privacy
through a sophisticated zero-knowledge proving scheme that preserves
confidentiality of transaction metadata. Technical details are available
in the Zcash [Protocol Specification](https://github.com/zcash/zips/raw/master/protocol/protocol.pdf).
This software is the Zclassic client. It downloads and stores the entire history
of Zclassic transactions; depending on the speed of your computer and network
This software is the Bitcoin Private client. It downloads and stores the entire history
of Bitcoin Private transactions; depending on the speed of your computer and network
connection, the synchronization process could take a day or more once the
blockchain has reached a significant size.
@ -86,7 +86,7 @@ Security Warnings
See important security warnings in
[doc/security-warnings.md](doc/security-warnings.md).
**Zclassic and Zcash are unfinished and highly experimental.** Use at your own risk.
**Bitcoin Private and Zcash are unfinished and highly experimental.** Use at your own risk.
Deprecation Policy
------------------
@ -98,14 +98,14 @@ height and can be explicitly disabled.
Where do I begin?
-----------------
We have a guide for joining the main Zclassic network:
https://github.com/z-classic/zclassic/wiki/1.0-User-Guide
We have a guide for joining the main Bitcoin Private network:
https://github.com/BTCPrivate/BitcoinPrivate/wiki/1.0-User-Guide
### Need Help?
* See the documentation at the [Zclassic Wiki](https://github.com/z-classic/zclassic/wiki)
* See the documentation at the [Bitcoin Private Wiki](https://github.com/BTCPrivate/BitcoinPrivate/wiki)
for help and more information.
* Ask for help on the [Zclassic](http://zcltalk.tech/index.php) forum.
* Ask for help on the [Bitcoin Private](http://zcltalk.tech/index.php) forum.
### Want to participate in development?

View File

@ -10,7 +10,7 @@ Build-Depends: autoconf, automake, bsdmainutils, build-essential,
Vcs-Git: https://github.com/zcash/zcash.git
Vcs-Browser: https://github.com/zcash/zcash
Package: zclassic
Package: btcprivate
Version: 1.0.6
Depends: ${shlibs:Depends}
Description: HTTPS for money.

View File

@ -5,7 +5,7 @@ zcash-cli \- manual page for zcash-cli v1.0.10-1
.SH DESCRIPTION
Zcash RPC client version v1.0.10\-1
.PP
In order to ensure you are adequately protecting your privacy when using Zclassic,
In order to ensure you are adequately protecting your privacy when using Bitcoin Private,
please see <https://z.cash/support/security/index.html>.
.SS "Usage:"
.TP

View File

@ -5,7 +5,7 @@ zcashd \- manual page for zcashd v1.0.10-1
.SH DESCRIPTION
Zcash Daemon version v1.0.10\-1
.PP
In order to ensure you are adequately protecting your privacy when using Zclassic,
In order to ensure you are adequately protecting your privacy when using Bitcoin Private,
please see <https://z.cash/support/security/index.html>.
.SS "Usage:"
.TP

View File

@ -229,7 +229,7 @@ public:
vFixedSeeds.clear();
vSeeds.clear();
vSeeds.push_back(CDNSSeedData("rotorproject.org", "test-dnsseed.rotorproject.org")); // Zclassic
vSeeds.push_back(CDNSSeedData("rotorproject.org", "test-dnsseed.rotorproject.org")); // Bitcoin Private
// guarantees the first 2 characters, when base58 encoded, are "tm"
base58Prefixes[PUBKEY_ADDRESS] = {0x1D,0x25};

View File

@ -53,7 +53,7 @@ TEST(ContextualCheckBlock, BadCoinbaseHeight) {
EXPECT_TRUE(ContextualCheckBlock(block, state, NULL));
// Treating block as non-genesis should fail
//mtx.vout.push_back(CTxOut(GetBlockSubsidy(1, Params().GetConsensus())/5, Params().GetFoundersRewardScriptAtHeight(1))); // disabled for Zclassic
//mtx.vout.push_back(CTxOut(GetBlockSubsidy(1, Params().GetConsensus())/5, Params().GetFoundersRewardScriptAtHeight(1))); // disabled for Bitcoin Private
CTransaction tx2 {mtx};
block.vtx[0] = tx2;
CBlock prev;

View File

@ -397,7 +397,7 @@ void ThreadShowMetricsScreen()
std::cout << std::endl;
// Thank you text
std::cout << _("Thank you for running a Zclassic node!") << std::endl;
std::cout << _("Thank you for running a Bitcoin Private node!") << std::endl;
std::cout << _("You're helping to strengthen the network and contributing to a social good :)") << std::endl;
// Privacy notice text

View File

@ -450,7 +450,7 @@ boost::filesystem::path GetDefaultDataDir()
// Unix: ~/.zcash
#ifdef WIN32
// Windows
return GetSpecialFolderPath(CSIDL_APPDATA) / "Zclassic";
return GetSpecialFolderPath(CSIDL_APPDATA) / "BTCprivate";
#else
fs::path pathRet;
char* pszHome = getenv("HOME");
@ -462,10 +462,10 @@ boost::filesystem::path GetDefaultDataDir()
// Mac
pathRet /= "Library/Application Support";
TryCreateDirectory(pathRet);
return pathRet / "Zclassic";
return pathRet / "BTCprivate";
#else
// Unix
return pathRet / ".zclassic";
return pathRet / ".btcprivate";
#endif
#endif
}
@ -582,7 +582,7 @@ void ClearDatadirCache()
boost::filesystem::path GetConfigFile()
{
boost::filesystem::path pathConfigFile(GetArg("-conf", "zclassic.conf"));
boost::filesystem::path pathConfigFile(GetArg("-conf", "btcprivate.conf"));
if (!pathConfigFile.is_complete())
pathConfigFile = GetDataDir(false) / pathConfigFile;
@ -891,7 +891,7 @@ void SetThreadPriority(int nPriority)
std::string PrivacyInfo()
{
return "\n" +
FormatParagraph(strprintf(_("In order to ensure you are adequately protecting your privacy when using Zclassic, please see <%s>."),
FormatParagraph(strprintf(_("In order to ensure you are adequately protecting your privacy when using Bitcoin Private, please see <%s>."),
"https://z.cash/support/security/index.html")) + "\n";
}

View File

@ -19,20 +19,20 @@ $0 --help
Show this help message and exit.
$0 [ --enable-lcov || --disable-tests ] [ --disable-mining ] [ --disable-rust ] [ --enable-proton ] [ MAKEARGS... ]
Build Zclassic and most of its transitive dependencies from
source. MAKEARGS are applied to both dependencies and Zclassic itself.
Build Bitcoin Private and most of its transitive dependencies from
source. MAKEARGS are applied to both dependencies and Bitcoin Private itself.
If --enable-lcov is passed, Zclassic is configured to add coverage
If --enable-lcov is passed, Bitcoin Private is configured to add coverage
instrumentation, thus enabling "make cov" to work.
If --disable-tests is passed instead, the Zclassic tests are not built.
If --disable-tests is passed instead, the Bitcoin Private tests are not built.
If --disable-mining is passed, Zclassic is configured to not build any mining
If --disable-mining is passed, Bitcoin Private is configured to not build any mining
code. It must be passed after the test arguments, if present.
If --disable-rust is passed, Zclassic is configured to not build any Rust language
If --disable-rust is passed, Bitcoin Private is configured to not build any Rust language
assets. It must be passed after test/mining arguments, if present.
If --enable-proton is passed, Zclassic is configured to build the Apache Qpid Proton
If --enable-proton is passed, Bitcoin Private is configured to build the Apache Qpid Proton
library required for AMQP support. This library is not built by default.
It must be passed after the test/mining/Rust arguments, if present.

View File

@ -125,12 +125,12 @@ EOF
main
rm -f /tmp/fetch_params.lock
if [ ! -f "$HOME/Library/Application Support/Zclassic/zclassic.conf" ]; then
echo "Creating zclassic.conf"
mkdir -p "$HOME/Library/Application Support/Zclassic/"
echo "rpcuser=zcashrpc" > ~/Library/Application\ Support/Zclassic/zclassic.conf
if [ ! -f "$HOME/Library/Application Support/BTCprivate/btcprivate.conf" ]; then
echo "Creating btcprivate.conf"
mkdir -p "$HOME/Library/Application Support/BTCprivate/"
echo "rpcuser=zcashrpc" > ~/Library/Application\ Support/BTCprivate/btcprivate.conf
PASSWORD=$(cat /dev/urandom | env LC_CTYPE=C tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
echo "rpcpassword=$PASSWORD" >> "$HOME/Library/Application Support/Zclassic/zclassic.conf"
echo "rpcpassword=$PASSWORD" >> "$HOME/Library/Application Support/BTCprivate/btcprivate.conf"
echo "Complete!"
fi