For anyone that needs more guidance on how to find the hidden premine (which the dev lied about), here you go:
Here's the falsehood:
Premine: 0
Here's the evidence:
Go to the source code (
https://github.com/picoind/pi/), src subfolder:
line 70 of main.cpp:
static const int64 nGenBlockHash = 0.05969026 * COIN;
lines 1248-1280 of main.cpp:
static const int64 nStartSubsidy = 0.00003141 * COIN;// 3.14159x10^-5
//static const int64 nMinSubsidy = 1 * COIN;
int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = nStartSubsidy;
if(nHeight < 313)
{
nSubsidy = 0.00000314 * COIN;// 3.14159x10^-6
}
if(nHeight == 1)
{
nSubsidy = nGenBlockHash;
}
if(nHeight == 314) // 3.14159265359x10^-4
{
nSubsidy = 0.00031415 * COIN;
}
if(nHeight == 3141) // 3.14159265359x10^-4
{
nSubsidy = 0.000314159 * COIN;
}
if(nHeight == 31415) // 3.14159265359x10^-3
{
nSubsidy = 0.00314159 * COIN;
}
if(nHeight == 314159) // 3.14159265359x10^-3
{
nSubsidy = 0.00314159 * COIN;
}
As you can see, block 1 is set to reward 0.05969026, which is 0.05969026/3.1415 = 1.9% of all coins that will ever be mined.