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.
___ _ ___ _ _
/ __\___ (_)_ __ / __\ |__ ___ ___| | _____ _ __
/ / / _ \| | '_ \ / / | '_ \ / _ \/ __| |/ / _ \ '__|
/ /__| (_) | | | | / /___| | | | __/ (__| < __/ |
\____/\___/|_|_| |_\____/|_| |_|\___|\___|_|\_\___|_|
v0.0.4 October 2016 | http://www.fuzzbawls.pw
Checking Host OS... WIN
Creating temp folder to clone remote repository...
Cloning https://github.com/mrsacoin/mrsacoin.git...
-= Repository Information =-
============================================================
Number of commits: 1
Last commit date: Tue, Jan 03, 2017 12:02:21 PM
Days since last commit: .21 Days
-= Build System Information =-
============================================================
Build Type: QMAKE/Makefile
Build Version: 2.0.0.2
Qt Bin: MrsaCoin-Qt
Daemon Bin: MrsaCoind
-= Coin Specifications =-
============================================================
Coin Name: MrsaCoin
Client Version: 1.0.0.0
Client Name: /MrsaCoin:1.0.0.0/
Default P2P Port: 17930
Default PRC Port: 17931
Message Start String: 0xc3 0xc1 0xfa 0xfc
-= Coin Information Checks =-
============================================================
Matching P2PPORT in init documentation: [OK]
Matching RPCPORT in init documentation: [OK]
Build & Client Version Match: [!!]
-= Library Version Compliance Checks =-
============================================================
Miniupnpc v1.9 (API 14): [!!]
OpenSSL v1.0.1k+ (Strict DER Signatures): [!!]
Boost v1.58+ (boost::get): [OK]
-= Security Standards Checks =-
============================================================
Free of IRC related files: [OK]
IRC based peer fetching: [--]
Contains signature malleability patch (PPCoin): [!!]
-= Connectivity Checks =-
============================================================
Contains unique ClientName: [OK]
Contains DNS seeder addresses: [**]
Contains Hex-Encoded seeder addresses: [!!]
Has at least ONE default connection method: [OK]
Number of DNS Seeds: 1
Listing DNS Seed addresses...
* 45.42.140.50 [OK]
-= OS Specific Checks =-
============================================================
Mac OS X Native Notification Support: [!!]
Mac OS X Deployment Script: [OK]
Mac OS X Application Icon: [OK]
Mac OS X Dock Icon Menu (Qt5): [!!]
Windows Installer Script: [**]
Windows Installer Header Image: [!!]
Windows Installer Logo Image: [!!]
Windows Installer Icon: [!!]
============================================================
* At least one DNS seeder addresses is improperly formatted.
* DNS Seeders should be full hostnames and not IP addresses.
* Windows deployment script is using an incorrect name!
* Deployment build won't have the correct metadata!
* Windows deployment sript is using an incorrect version!
* Deployment build won't have the correct metadata!
Results should be manually verified and you should NOT rely
on any automated scripts (including this one) before running
or compiling any crypto wallet.
============================================================
Removing temp directory...
static const int64_t MAX_MONEY = 2100000000 * COIN;
static const double TAXATION_PERCENTAGE = 0.20;
static const int64_t MINT_PROOF_OF_STAKE_STABLE = 0.05 * COIN;
int64_t GetProofOfWorkReward(int nHeight, int64_t nFees, const CBlockIndex* pindex)
{
int64_t nSubsidy = 8192 * COIN;
if(nHeight == 1)
nSubsidy = TAXATION_PERCENTAGE * MAX_MONEY;
int nPoWHeight = GetPowHeight(pindex);
nSubsidy >>= (nPoWHeight / 43200);
printf(">> nHeight = %d, nPoWHeight = %d\n", nHeight, nPoWHeight);
return nSubsidy + nFees;
}
int64_t GetProofOfWorkBonusRewardFactor(CBlockIndex* pindex)
{
return 0;
}
static const int YEARLY_POS_BLOCK_COUNT = 525600;
int64_t GetProofOfStakeReward(int64_t nCoinAge, const CBlockIndex* pindex)
{
int64_t nRewardCoinYear = MINT_PROOF_OF_STAKE_STABLE;
int nPoSHeight = GetPosHeight(pindex);
int64_t nSubsidy = 0;
if(nPoSHeight < YEARLY_POS_BLOCK_COUNT)
{
nSubsidy = 4 * nRewardCoinYear * nCoinAge / 365;
}
else
{
nSubsidy = nRewardCoinYear * nCoinAge / 365;
}
return nSubsidy;
}