Show Posts
|
Pages: [1]
|
The value of the coin in. 
|
|
|
This is no miner 
|
|
|
12:00 AM UTC
Saturday, May 10, 2014
?
Should be written on the panel.
|
|
|
How to divide the premined? ipo?? scam??? lol 
|
|
|
We are not hide anything, you checked blocks explorer, launching at source code from release of the day, it's worth the waiting.
|
|
|
The wallet can not update 
|
|
|
Launch Countdown Lauch countdown until Thursday, May 8, 2014 at 8:00:00 AM (New York time) How to get the CloverCoin?1.Reward bitcointalk’s activist, reply post your ideas, suggestions, prospect and so on. Keep your signature wallet adress until lauch countdown and you will get 5CLC to each reply and don’t duplicate content, we were paid on time. 2.After the release of get to mining pools. 3.Keep your CLC in the wallet until nominal stake interest. About CloverCoinSafe, Secure and anonymous for everyone! Clovercoin is the social currency that enriches people’s social lives and makes digital currency easy for the general public. Clovercoin achieves this by integrating a digital currency platform seamlessly with all major social networks to make the process of sending and receiving money fun and rewarding for everyone. What's the Clover of the each leaf? Each leaf is believed to represent something: the first is for faith, the second is for hope, the third is for love, and the fourth is for luck!Websitehttp://www.clovercoin.co/SpecificationsProof of Stake - Quick Transactions - Energy Efficient - Extremely Low Inflation•Block time: 1 minute •Difficulty retarget: every block •Nominal stake interest: 2% annually •Min transaction fee: 0.0001 CLC •Fees are paid to miners •Confirmations: 6, maturity: 120 •Min stake age: 2 Day, no max age •Premine 0.99% for Dev support and future development •P2P port: 15821, RPC port: 15822Proof of work (done)•Algo: scrypt •Block reward: 10000 CLC, no halving •Max height: 10000 (after this network will not accept PoW)WalletsPoolsBlock ExplorerExchangesSocial Media• Twitter https://twitter.com/clovercointeam• Facebook https://www.facebook.com/clovercointeam• Reddit http://www.reddit.com/r/clovercointeam• Gmail clovercointeam@gmail.comReward bitcointalk’s activist, reply post your ideas, suggestions, prospect and so on. Keep your signature wallet adress until lauch countdown and you will get 5CLC to each reply and don’t duplicate content, we were paid on time. ······5CLC?? The quantity is too small. Just put this as a tip 
|
|
|
I have kept an eye on it and I must say I am impressed.
That's my priority as well? Hope luck!
|
|
|
I also would like to know this, Who can tell
|
|
|
I have the following problem - when I compile daemon based on fehcoin (with pszTimestamp, block.nTime etc. changes) and I run it, I get empty nNonce: Loading block index... CBlock(hash=c18a2e48349763b42b90ac00881abee846203b789a2d86aacb2cd2aa5161c66f, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=25cc2e3283b86f225057d0eaa0eaa0003b891de79828f59bb4fc0b290ab897e2, nTime=1388419211, nBits=1f00ffff, nNonce=0, vtx=1, vchBlockSig=) Coinbase(hash=25cc2e3283, nTime=1375995262, ver=1, vin.size=1, vout.size=1, nLockTime=0) CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f272957687920776f756c6420796f75206e65656420426974207768656e20796f7520686176652053776167) CTxOut(empty) vMerkleTree: 25cc2e3283 block.GetHash() == c18a2e48349763b42b90ac00881abee846203b789a2d86aacb2cd2aa5161c66f block.hashMerkleRoot == 25cc2e3283b86f225057d0eaa0eaa0003b891de79828f59bb4fc0b290ab897e2 block.nTime = 1388419211 block.nNonce = 0 block.nNonce = 0 Why is this happening? Do This Modification in the Code: Hello, You can use this Code to find Genesis Block for N-Scrypt, Insert it before ///debug print comment which would be near hashMerkleRoot and compile ^_^: if (true &&block.GetHash() != hashGenesisBlock) { printf("Searching for genesis block...\n"); // This will figure out a valid hash and Nonce if you're // creating a different genesis block: uint256 hashTarget = CBigNum().SetCompact(block.nBits).getuint256(); uint256 thash;
unsigned long int scrypt_scratpad_size_current_block = ((1 << (GetNfactor(block.nTime) + 1)) * 128 ) + 63; char scratchpad[scrypt_scratpad_size_current_block];
loop { // Generic scrypt scrypt_N_1_1_256_sp_generic(BEGIN(block.nVersion), BEGIN(thash), scratchpad, GetNfactor(block.nTime));
if (thash <= hashTarget) { printf ("found it!\n"); break; } if ((block.nNonce & 0xFFF) == 0) { printf("nonce %08X: hash = %s (target = %s)\n", block.nNonce, thash.ToString().c_str(), hashTarget.ToString().c_str()); } ++block.nNonce; if (block.nNonce == 0) { printf("NONCE WRAPPED, incrementing time\n"); ++block.nTime; } } } thank 
|
|
|
I have the following problem - when I compile daemon based on fehcoin (with pszTimestamp, block.nTime etc. changes) and I run it, I get empty nNonce: Loading block index... CBlock(hash=c18a2e48349763b42b90ac00881abee846203b789a2d86aacb2cd2aa5161c66f, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=25cc2e3283b86f225057d0eaa0eaa0003b891de79828f59bb4fc0b290ab897e2, nTime=1388419211, nBits=1f00ffff, nNonce=0, vtx=1, vchBlockSig=) Coinbase(hash=25cc2e3283, nTime=1375995262, ver=1, vin.size=1, vout.size=1, nLockTime=0) CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f272957687920776f756c6420796f75206e65656420426974207768656e20796f7520686176652053776167) CTxOut(empty) vMerkleTree: 25cc2e3283 block.GetHash() == c18a2e48349763b42b90ac00881abee846203b789a2d86aacb2cd2aa5161c66f block.hashMerkleRoot == 25cc2e3283b86f225057d0eaa0eaa0003b891de79828f59bb4fc0b290ab897e2 block.nTime = 1388419211 block.nNonce = 0 block.nNonce = 0 Why is this happening?
|
|
|
What is the x11 
|
|
|
|