tripppn
|
|
July 28, 2014, 03:58:18 AM |
|
Which pool will be first to open... Its a Mystery
|
“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.” ― Frank Zappa
|
|
|
MysteryCoin.org (OP)
Newbie
Offline
Activity: 112
Merit: 0
|
|
July 28, 2014, 04:01:52 AM |
|
int64 static GetBlockValue(int nHeight, int64 nFees, uint256 prevHash) { int64 nSubsidy = 10 * COIN;
std::string cseed_str = prevHash.ToString().substr(7,7); const char* cseed = cseed_str.c_str(); long seed = hex2long(cseed); int rand = generateMTRandom(seed, 800); int rand1 = 0; int rand2 = 0; int rand3 = 0; int rand4 = 0; int rand5 = 0; int rand6 = 0; int rand7 = 0;
if(nHeight < 80000) { nSubsidy = rand * COIN; }
else if(nHeight < 160000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand1 = generateMTRandom(seed, 400); if(rand1 < 1) nSubsidy = rand1 + 1 * COIN; else if(rand1 > 1) nSubsidy = rand1 * COIN; } else if(nHeight < 240000) { cseed_str = prevHash.ToString().substr(6,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand2 = generateMTRandom(seed, 300); if(rand2 < 2) nSubsidy = rand2 + 2 * COIN; else if(rand2 > 2) nSubsidy = rand2 * COIN; } else if(nHeight < 320000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand3 = generateMTRandom(seed, 200); if(rand3 < 3) nSubsidy = rand3 + 3 * COIN; else if(rand3 > 3) nSubsidy = rand3 * COIN; } else if(nHeight < 400000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand4 = generateMTRandom(seed, 100); if(rand4 < 4) nSubsidy = rand4 + 4 * COIN; else if(rand4 > 4) nSubsidy = rand4 * COIN; } else if(nHeight < 480000) { cseed_str = prevHash.ToString().substr(6,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand5 = generateMTRandom(seed, 50); if(rand5 < 5) nSubsidy = rand5 + 5 * COIN; else if(rand5 > 5) nSubsidy = rand5 * COIN; } else if(nHeight < 560000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand6 = generateMTRandom(seed, 25); if(rand6 < 6) nSubsidy = rand6 + 6 * COIN; else if(rand6 > 6) nSubsidy = rand6 * COIN; } else if(nHeight < 600000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand1 = generateMTRandom(seed, 14); if(rand7 < 1) nSubsidy = rand7 + 7 * COIN; else if(rand7 > 7) nSubsidy = rand7 * COIN; }
nSubsidy >>= (nHeight / 1000000);
return nSubsidy; }
|
|
|
|
tripppn
|
|
July 28, 2014, 04:23:28 AM |
|
int64 static GetBlockValue(int nHeight, int64 nFees, uint256 prevHash) { int64 nSubsidy = 10 * COIN;
std::string cseed_str = prevHash.ToString().substr(7,7); const char* cseed = cseed_str.c_str(); long seed = hex2long(cseed); int rand = generateMTRandom(seed, 800); int rand1 = 0; int rand2 = 0; int rand3 = 0; int rand4 = 0; int rand5 = 0; int rand6 = 0; int rand7 = 0;
if(nHeight < 80000) { nSubsidy = rand * COIN; }
else if(nHeight < 160000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand1 = generateMTRandom(seed, 400); if(rand1 < 1) nSubsidy = rand1 + 1 * COIN; else if(rand1 > 1) nSubsidy = rand1 * COIN; } else if(nHeight < 240000) { cseed_str = prevHash.ToString().substr(6,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand2 = generateMTRandom(seed, 300); if(rand2 < 2) nSubsidy = rand2 + 2 * COIN; else if(rand2 > 2) nSubsidy = rand2 * COIN; } else if(nHeight < 320000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand3 = generateMTRandom(seed, 200); if(rand3 < 3) nSubsidy = rand3 + 3 * COIN; else if(rand3 > 3) nSubsidy = rand3 * COIN; } else if(nHeight < 400000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand4 = generateMTRandom(seed, 100); if(rand4 < 4) nSubsidy = rand4 + 4 * COIN; else if(rand4 > 4) nSubsidy = rand4 * COIN; } else if(nHeight < 480000) { cseed_str = prevHash.ToString().substr(6,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand5 = generateMTRandom(seed, 50); if(rand5 < 5) nSubsidy = rand5 + 5 * COIN; else if(rand5 > 5) nSubsidy = rand5 * COIN; } else if(nHeight < 560000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand6 = generateMTRandom(seed, 25); if(rand6 < 6) nSubsidy = rand6 + 6 * COIN; else if(rand6 > 6) nSubsidy = rand6 * COIN; } else if(nHeight < 600000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand1 = generateMTRandom(seed, 14); if(rand7 < 1) nSubsidy = rand7 + 7 * COIN; else if(rand7 > 7) nSubsidy = rand7 * COIN; }
nSubsidy >>= (nHeight / 1000000);
return nSubsidy; } I don't speak Spanish.
|
“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.” ― Frank Zappa
|
|
|
DonQuijote
Legendary
Offline
Activity: 1551
Merit: 1002
♠ ♥ ♣ ♦ < ♛♚&#
|
|
July 28, 2014, 04:23:37 AM |
|
int64 static GetBlockValue(int nHeight, int64 nFees, uint256 prevHash) { int64 nSubsidy = 10 * COIN;
std::string cseed_str = prevHash.ToString().substr(7,7); const char* cseed = cseed_str.c_str(); long seed = hex2long(cseed); int rand = generateMTRandom(seed, 800); int rand1 = 0; int rand2 = 0; int rand3 = 0; int rand4 = 0; int rand5 = 0; int rand6 = 0; int rand7 = 0;
if(nHeight < 80000) { nSubsidy = rand * COIN; }
else if(nHeight < 160000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand1 = generateMTRandom(seed, 400); if(rand1 < 1) nSubsidy = rand1 + 1 * COIN; else if(rand1 > 1) nSubsidy = rand1 * COIN; } else if(nHeight < 240000) { cseed_str = prevHash.ToString().substr(6,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand2 = generateMTRandom(seed, 300); if(rand2 < 2) nSubsidy = rand2 + 2 * COIN; else if(rand2 > 2) nSubsidy = rand2 * COIN; } else if(nHeight < 320000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand3 = generateMTRandom(seed, 200); if(rand3 < 3) nSubsidy = rand3 + 3 * COIN; else if(rand3 > 3) nSubsidy = rand3 * COIN; } else if(nHeight < 400000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand4 = generateMTRandom(seed, 100); if(rand4 < 4) nSubsidy = rand4 + 4 * COIN; else if(rand4 > 4) nSubsidy = rand4 * COIN; } else if(nHeight < 480000) { cseed_str = prevHash.ToString().substr(6,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand5 = generateMTRandom(seed, 50); if(rand5 < 5) nSubsidy = rand5 + 5 * COIN; else if(rand5 > 5) nSubsidy = rand5 * COIN; } else if(nHeight < 560000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand6 = generateMTRandom(seed, 25); if(rand6 < 6) nSubsidy = rand6 + 6 * COIN; else if(rand6 > 6) nSubsidy = rand6 * COIN; } else if(nHeight < 600000) { cseed_str = prevHash.ToString().substr(7,7); cseed = cseed_str.c_str(); seed = hex2long(cseed); rand1 = generateMTRandom(seed, 14); if(rand7 < 1) nSubsidy = rand7 + 7 * COIN; else if(rand7 > 7) nSubsidy = rand7 * COIN; }
nSubsidy >>= (nHeight / 1000000);
return nSubsidy; }
|
THE INGENIOUS GENTLEMAN DON QUIXOTE OF LA MANCHA
|
|
|
tripppn
|
|
July 28, 2014, 04:44:55 AM |
|
15 more mins??
|
“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.” ― Frank Zappa
|
|
|
workminer
|
|
July 28, 2014, 04:49:11 AM |
|
12 min left
|
|
|
|
apmapm12
|
|
July 28, 2014, 04:50:08 AM |
|
10 mins!
|
|
|
|
antonio8
Legendary
Offline
Activity: 1400
Merit: 1000
|
|
July 28, 2014, 04:57:44 AM |
|
Hope Hard Core Miners is ready
|
If you are going to leave your BTC on an exchange please send it to this address instead 1GH3ub3UUHbU5qDJW5u3E9jZ96ZEmzaXtG, I will at least use the money better than someone who steals it from the exchange. Thanks
|
|
|
apmapm12
|
|
July 28, 2014, 04:59:44 AM |
|
Hope Hard Core Miners is ready
Agreed me too
|
|
|
|
apmapm12
|
|
July 28, 2014, 05:01:02 AM |
|
Mystery time?
|
|
|
|
tripppn
|
|
July 28, 2014, 05:01:44 AM |
|
IT'S TIME!!!
|
“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.” ― Frank Zappa
|
|
|
MysteryCoin.org (OP)
Newbie
Offline
Activity: 112
Merit: 0
|
|
July 28, 2014, 05:02:02 AM |
|
|
|
|
|
rhkazani1
|
|
July 28, 2014, 05:03:16 AM |
|
Any pools up yet?
|
|
|
|
bigc1984
|
|
July 28, 2014, 05:04:25 AM |
|
slooooow download on wallet
|
|
|
|
workminer
|
|
July 28, 2014, 05:04:38 AM |
|
which pool alive?
|
|
|
|
bigc1984
|
|
July 28, 2014, 05:06:32 AM |
|
{ "blocks" : 64, "currentblocksize" : 0, "currentblocktx" : 0, "difficulty" : 214.66265754, "errors" : "", "generate" : false, "genproclimit" : -1, "hashespersec" : 0, "pooledtx" : 0, "testnet" : false }
|
|
|
|
antonio8
Legendary
Offline
Activity: 1400
Merit: 1000
|
|
July 28, 2014, 05:06:43 AM |
|
Up and Solo'ing. Found 3 blocks so far.
|
If you are going to leave your BTC on an exchange please send it to this address instead 1GH3ub3UUHbU5qDJW5u3E9jZ96ZEmzaXtG, I will at least use the money better than someone who steals it from the exchange. Thanks
|
|
|
tripppn
|
|
July 28, 2014, 05:09:35 AM |
|
So much for CPU mining
{ "blocks" : 73, "currentblocksize" : 1000, "currentblocktx" : 0, "difficulty" : 340.62818509, "errors" : "", "generate" : true, "genproclimit" : -1, "hashespersec" : 408680, "pooledtx" : 0, "testnet" : false }
Common pools!
|
“You can't be a real country unless you have a beer and an airline - it helps if you have some kind of football team, or some nuclear weapons, but in the very least you need a beer.” ― Frank Zappa
|
|
|
workminer
|
|
July 28, 2014, 05:12:39 AM |
|
algo? sha-256?
|
|
|
|
|
|