It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
minerd-x64-avx.exe --starttime=1388361600 -a scrypt-chacha -o stratum+tcp://yacoin.club:3443 -O User.WorkerName:WorkerPassword
minerd-x64-avx.exe --starttime=1388361600 -a scrypt-chacha -o stratum+tcp://yacoin.club:3443 -O User.WorkerName:WorkerPassword
nSubsidy = 100 / (diff ^ 1/6)
nSubsidy = 25 / (diff ^ 1/6)
nSubsidy = 100 / (diff ^ 1/6)
int64 GetProofOfWorkReward(unsigned int nBits)
{
CBigNum bnSubsidyLimit = MAX_MINT_PROOF_OF_WORK;
CBigNum bnTarget;
bnTarget.SetCompact(nBits);
CBigNum bnTargetLimit = bnProofOfWorkLimit;
bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
// ppcoin: subsidy is cut in half every 64x multiply of difficulty
// A reasonably continuous curve is used to avoid shock to market
// (nSubsidyLimit / nSubsidy) ** 6 == bnProofOfWorkLimit / bnTarget
//
// Human readable form:
//
// nSubsidy = 100 / (diff ^ 1/6)
CBigNum bnLowerBound = CENT;
CBigNum bnUpperBound = bnSubsidyLimit;
while (bnLowerBound + CENT <= bnUpperBound)
{
CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2;
if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfWorkReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64());
if (bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnTargetLimit > bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnTarget)
bnUpperBound = bnMidValue;
else
bnLowerBound = bnMidValue;
}
int64 nSubsidy = bnUpperBound.getuint64();
nSubsidy = (nSubsidy / CENT) * CENT;
if (fDebug && GetBoolArg("-printcreation"))
printf("GetProofOfWorkReward() : create=%s nBits=0x%08x nSubsidy=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nBits, nSubsidy);
return min(nSubsidy, MAX_MINT_PROOF_OF_WORK);
}
int64 GetProofOfWorkReward(unsigned int nBits)
{
CBigNum
bnSubsidyLimit = MAX_MINT_PROOF_OF_WORK;
CBigNum
bnTarget;
bnTarget.SetCompact(nBits);
CBigNum
bnTargetLimit = bnProofOfWorkLimit;
bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
// ppcoin: subsidy is cut in half every 64x multiply of difficulty
// 64 = 2 to the 6th power
// A reasonably continuous curve is used to avoid shock to market
// (nSubsidyLimit / nSubsidy) ** 6 == bnProofOfWorkLimit / bnTarget
// what are these terms and how do they relate to the discussion, exactly??????
//
// Human readable form:
//
// nSubsidy = 100 / (diff ^ 1/6)
// again, but worse!!! Undefined magic numbers. I think that 100 is the
// maximum subsidy in COINs ???????????
// diff is ??????????????
// 1/6 is 0 if we are talking integer divide, so obviously we are not?????????????
// So what are we talking???????????????????
// is ^ from GWBASIC??????????????
// Do we mean power?????????????????
// even so, after all of that, what does this code below actually do?????????
CBigNum
bnLowerBound = CENT; // this is 0.01 * COIN
CBigNum
bnUpperBound = bnSubsidyLimit; // seems that this is just 100* COIN
while (bnLowerBound + CENT <= bnUpperBound)
{
CBigNum
bnMidValue = (bnLowerBound + bnUpperBound) / 2;
if (fDebug && GetBoolArg("-printcreation"))
printf(
"GetProofOfWorkReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n",
bnLowerBound.getuint64(),
bnUpperBound.getuint64(),
bnMidValue.getuint64()
);
if (
bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue *
bnTargetLimit >
bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit *
bnTarget
)
bnUpperBound = bnMidValue;
else
bnLowerBound = bnMidValue;
}
int64
nSubsidy = bnUpperBound.getuint64();
nSubsidy = (nSubsidy / CENT) * CENT;
if (fDebug && GetBoolArg("-printcreation"))
printf(
"GetProofOfWorkReward() : create=%s nBits=0x%08x nSubsidy=%"PRI64d"\n",
FormatMoney(nSubsidy).c_str(),
nBits,
nSubsidy
);
return min(nSubsidy, MAX_MINT_PROOF_OF_WORK);
}
nSubsidy = 100 / (diff ^ 1/6)
nSubsidy = 25 / (diff ^ 1/6)