diff --git a/configure.ac b/configure.ac index fefcc2148..a807044f9 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ define(_CLIENT_VERSION_REVISION, 99) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_IS_RELEASE, false) define(_COPYRIGHT_YEAR, 2015) -AC_INIT([LBRYcrd Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/bitcoin/bitcoin/issues],[lbrycrd]) +AC_INIT([LBRYcrd Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[https://github.com/lbryio/lbrycrd/issues],[lbrycrd]) AC_CONFIG_SRCDIR([src/main.cpp]) AC_CONFIG_HEADERS([src/config/bitcoin-config.h]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/src/main.cpp b/src/main.cpp index 6e4c15b1a..d0e2436a9 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1104,7 +1104,7 @@ CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams) { if (nHeight == 0) { - return 400000000 * COIN; + return 350000000 * COIN; } CAmount nStartingSubsidy = 500 * COIN; int nLevel = (nHeight - 1) / consensusParams.nSubsidyLevelInterval; diff --git a/src/miner.cpp b/src/miner.cpp index 7ccfd5ff2..0f5117126 100644 --- a/src/miner.cpp +++ b/src/miner.cpp @@ -562,7 +562,7 @@ static bool ProcessBlockFound(const CBlock* pblock, const CChainParams& chainpar void static BitcoinMiner(const CChainParams& chainparams) { - LogPrintf("BitcoinMiner started\n"); + LogPrintf("LBRYcrdMiner started\n"); SetThreadPriority(THREAD_PRIORITY_LOWEST); RenameThread("bitcoin-miner"); @@ -630,7 +630,7 @@ void static BitcoinMiner(const CChainParams& chainparams) assert(hash == pblock->GetHash()); SetThreadPriority(THREAD_PRIORITY_NORMAL); - LogPrintf("BitcoinMiner:\n"); + LogPrintf("LBRYcrdMiner:\n"); LogPrintf("proof-of-work found \n hash: %s \ntarget: %s\n", hash.GetHex(), hashTarget.GetHex()); ProcessBlockFound(pblock, chainparams); SetThreadPriority(THREAD_PRIORITY_LOWEST); @@ -670,12 +670,12 @@ void static BitcoinMiner(const CChainParams& chainparams) } catch (const boost::thread_interrupted&) { - LogPrintf("BitcoinMiner terminated\n"); + LogPrintf("LBRYcrdMiner terminated\n"); throw; } catch (const std::runtime_error &e) { - LogPrintf("BitcoinMiner runtime error: %s\n", e.what()); + LogPrintf("LBRYcrdMiner runtime error: %s\n", e.what()); return; } } diff --git a/src/test/main_tests.cpp b/src/test/main_tests.cpp index 87b9a529d..ad7ab48c4 100644 --- a/src/test/main_tests.cpp +++ b/src/test/main_tests.cpp @@ -53,7 +53,7 @@ BOOST_AUTO_TEST_CASE(subsidy_limit_test) nSum += nSubsidy * 1000; BOOST_CHECK(MoneyRange(nSum)); } - BOOST_CHECK_EQUAL(nSum, 107091600000000000LL); + BOOST_CHECK_EQUAL(nSum, 102091600000000000LL); } bool ReturnFalse() { return false; }